Fix currency/fee-rate unit string in the help text
commit47ba2c312a440baff5ebc911e3bb014643f4e9c3
authorAkio Nakamura <nakamura@dgtechnologies.co.jp>
Mon, 28 Aug 2017 03:44:57 +0000 (28 12:44 +0900)
committerAkio Nakamura <nakamura@dgtechnologies.co.jp>
Tue, 5 Sep 2017 01:07:55 +0000 (5 10:07 +0900)
treec5a51ccfd05faa5812e6c131e0d3912cf448284a
parenta90e6d2bffc422ddcdb771c53aac0bceb970a2c4
Fix currency/fee-rate unit string in the help text

1. The RPC help text should use the constant CURRENCY_UNIT defined in
  policy/feerate.cpp instead of the literal 'BTC'. In the following
  2 RPC commands, 'BTC' is written directly in the help text.
    1) estimatesmartfee
    2) estimaterawfee
  And also, for these help strings, the notation
  'fee-per-kilobyte (in BTC)' is somewhat ambiguous.

  To write more precisely, this commit changes to 'fee rate in BTC/kB'
  with using the constant CURRENCY_UNIT.

2. Some RPC command use 'satoshis' as the unit. It should be written
  as 'satoshis' instead of 'Satoshis' in the RPC help text.

  So, this commit fixes this typo in getblocktemplate.

3. The phrase that '... feerate (BTC per KB) ...'  is used to explain
  the fee rate in the help text of following 2 RPC commands.
    1) getmempoolinfo
    2) fundrawtransaction
  But they are different from other similar help text of the RPCs.
  And also, 'KB' implies Kibibyte (2^10 byte).

  To unify and to clarify, this commit changes these phrase to
  '... fee rate in BTC/kB ...'.
  (BTC references the constant 'CURRENCY_UNIT')
src/rpc/blockchain.cpp
src/rpc/mining.cpp
src/wallet/rpcwallet.cpp