aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGavin Andresen <gavinandresen@gmail.com>2013-09-05 21:57:52 -0700
committerGavin Andresen <gavinandresen@gmail.com>2013-09-05 21:57:52 -0700
commitd22d9753cc7175a7cf0ce440b96d83277747ecb9 (patch)
tree75d52bd5d8850d3492c5da692fc85a6104f306bc
parent2fee100f036626866e5dca3f27b7562da25e43f3 (diff)
parenta22eed6a1ef5a1bb11c6ebee5554ca9919901eb9 (diff)
downloadbitcoin-d22d9753cc7175a7cf0ce440b96d83277747ecb9.tar.xz
Merge pull request #2978 from gmaxwell/rpc_settxfee_doc
Make settxfee clear that units are btc/kb.
-rw-r--r--src/rpcblockchain.cpp4
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;