diff options
| author | Ross Nicoll <[email protected]> | 2015-08-01 20:15:23 +0100 |
|---|---|---|
| committer | Ross Nicoll <[email protected]> | 2015-08-03 22:58:30 +0100 |
| commit | 9ca7857df74c52eb2c46be36c88a12879be6cf8c (patch) | |
| tree | b9273763228ed4a847d3bc64c7c68c820c0b0e84 /src/rpcnet.cpp | |
| parent | Merge pull request #6473 (diff) | |
| download | discoin-9ca7857df74c52eb2c46be36c88a12879be6cf8c.tar.xz discoin-9ca7857df74c52eb2c46be36c88a12879be6cf8c.zip | |
Rationalize currency unit to "BTC"
Previously various user-facing strings have used inconsistent currency units "BTC",
"btc" and "bitcoins". This adds a single constant and uses it for each reference to
the currency unit.
Also adds a description of the unit for --maxtxfee, and adds the missing "amount"
field description to the (deprecated) move RPC command.
Diffstat (limited to 'src/rpcnet.cpp')
| -rw-r--r-- | src/rpcnet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpcnet.cpp b/src/rpcnet.cpp index ed903f9fd..d51aa5030 100644 --- a/src/rpcnet.cpp +++ b/src/rpcnet.cpp @@ -423,7 +423,7 @@ UniValue getnetworkinfo(const UniValue& params, bool fHelp) " }\n" " ,...\n" " ],\n" - " \"relayfee\": x.xxxxxxxx, (numeric) minimum relay fee for non-free transactions in btc/kb\n" + " \"relayfee\": x.xxxxxxxx, (numeric) minimum relay fee for non-free transactions in " + CURRENCY_UNIT + "/kB\n" " \"localaddresses\": [ (array) list of local addresses\n" " {\n" " \"address\": \"xxxx\", (string) network address\n" |