diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-01-29 17:24:30 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-01-29 17:25:04 +0100 |
commit | a7f3aedec3ce837c6932b1d2cf8e05ea3de93847 (patch) | |
tree | b9c7e8eb2b5aa870ecb841371aac865907821b7a /src/rpcwallet.cpp | |
parent | de9b4c7abcd6247f88344aa46b382098fa32c0af (diff) |
Re-add BTC/KB in help message for `settxfee`
Commit a22eed6a got reverted in a RPC documentation update, redo it.
Diffstat (limited to 'src/rpcwallet.cpp')
-rw-r--r-- | src/rpcwallet.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rpcwallet.cpp b/src/rpcwallet.cpp index 5c6c873762..8311b39c4e 100644 --- a/src/rpcwallet.cpp +++ b/src/rpcwallet.cpp @@ -1850,9 +1850,9 @@ Value settxfee(const Array& params, bool fHelp) if (fHelp || params.size() < 1 || params.size() > 1) throw runtime_error( "settxfee amount\n" - "\nSet the transaction fee. 'amount' is a real and is rounded to the nearest 0.00000001\n" + "\nSet the transaction fee per KB.\n" "\nArguments:\n" - "1. amount (numeric, required) The transaction fee in btc rounded to the nearest 0.00000001\n" + "1. amount (numeric, required) The transaction fee in BTC/KB rounded to the nearest 0.00000001\n" "\nResult\n" "true|false (boolean) Returns true if successful\n" "\nExamples:\n" |