diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2013-09-05 21:57:52 -0700 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2013-09-05 21:57:52 -0700 |
commit | d22d9753cc7175a7cf0ce440b96d83277747ecb9 (patch) | |
tree | 75d52bd5d8850d3492c5da692fc85a6104f306bc /src | |
parent | 2fee100f036626866e5dca3f27b7562da25e43f3 (diff) | |
parent | a22eed6a1ef5a1bb11c6ebee5554ca9919901eb9 (diff) |
Merge pull request #2978 from gmaxwell/rpc_settxfee_doc
Make settxfee clear that units are btc/kb.
Diffstat (limited to 'src')
-rw-r--r-- | src/rpcblockchain.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rpcblockchain.cpp b/src/rpcblockchain.cpp index ba346f19d9..adff708a06 100644 --- a/src/rpcblockchain.cpp +++ b/src/rpcblockchain.cpp @@ -108,8 +108,8 @@ Value settxfee(const Array& params, bool fHelp) { if (fHelp || params.size() < 1 || params.size() > 1) throw runtime_error( - "settxfee <amount>\n" - "<amount> is a real and is rounded to the nearest 0.00000001"); + "settxfee <amount btc/kb>\n" + "<amount> is a real and is rounded to the nearest 0.00000001 btc per kb"); // Amount int64 nAmount = 0; |