aboutsummaryrefslogtreecommitdiff
path: root/src/rpcblockchain.cpp
diff options
context:
space:
mode:
authorGavin Andresen <[email protected]>2013-09-05 21:57:52 -0700
committerGavin Andresen <[email protected]>2013-09-05 21:57:52 -0700
commitd22d9753cc7175a7cf0ce440b96d83277747ecb9 (patch)
tree75d52bd5d8850d3492c5da692fc85a6104f306bc /src/rpcblockchain.cpp
parentMerge pull request #2944 from gavinandresen/acceptheader (diff)
parentMake settxfee clear that units are btc/kb. (diff)
downloaddiscoin-d22d9753cc7175a7cf0ce440b96d83277747ecb9.tar.xz
discoin-d22d9753cc7175a7cf0ce440b96d83277747ecb9.zip
Merge pull request #2978 from gmaxwell/rpc_settxfee_doc
Make settxfee clear that units are btc/kb.
Diffstat (limited to 'src/rpcblockchain.cpp')
-rw-r--r--src/rpcblockchain.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rpcblockchain.cpp b/src/rpcblockchain.cpp
index ba346f19d..adff708a0 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;