diff options
author | Gregory Maxwell <greg@xiph.org> | 2013-09-05 17:54:31 -0700 |
---|---|---|
committer | Gregory Maxwell <greg@xiph.org> | 2013-09-05 17:56:13 -0700 |
commit | a22eed6a1ef5a1bb11c6ebee5554ca9919901eb9 (patch) | |
tree | 75d52bd5d8850d3492c5da692fc85a6104f306bc /src | |
parent | 2fee100f036626866e5dca3f27b7562da25e43f3 (diff) |
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; |