Browse Source

Make settxfee clear that units are btc/kb.

Rebased-from: fffab7e45061aba3a5f345e0fc22a8584bcb012d 0.8.x
0.8
Gregory Maxwell 11 years ago committed by Warren Togami
parent
commit
f80351c321
  1. 4
      src/rpcblockchain.cpp

4
src/rpcblockchain.cpp

@ -106,8 +106,8 @@ Value settxfee(const Array& params, bool fHelp) @@ -106,8 +106,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;

Loading…
Cancel
Save