diff options
author | Ross Nicoll <jrn@jrn.me.uk> | 2015-08-01 20:15:23 +0100 |
---|---|---|
committer | Ross Nicoll <jrn@jrn.me.uk> | 2015-08-03 22:58:30 +0100 |
commit | 9ca7857df74c52eb2c46be36c88a12879be6cf8c (patch) | |
tree | b9273763228ed4a847d3bc64c7c68c820c0b0e84 /src/rpcnet.cpp | |
parent | 86cfd23f68367af072500b1758a4c446cdd36e74 (diff) |
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 ed903f9fd3..d51aa50305 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" |