Skip to content

Commit

Permalink
Merge pull request #2978 from gmaxwell/rpc_settxfee_doc
Browse files Browse the repository at this point in the history
Make settxfee clear that units are btc/kb.
  • Loading branch information
gavinandresen committed Sep 6, 2013
2 parents 2fee100 + a22eed6 commit d22d975
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rpcblockchain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit d22d975

Please sign in to comment.