diff options
author | MarcoFalke <falke.marco@gmail.com> | 2015-11-09 21:00:21 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2015-11-30 18:02:12 +0100 |
commit | fa19a588b9e734b05b81bc0cb49ba3a04ffde0bc (patch) | |
tree | d57b10bc4b9318a5e892e28645877fd14b97ed0b | |
parent | faffc172ec08e08e266ef9517149853c59ad4b45 (diff) |
HelpMessage: Don't hide -mintxfee behind showDebug
-rw-r--r-- | src/init.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/init.cpp b/src/init.cpp index 191c2ed8ae..e92931d687 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -393,8 +393,7 @@ std::string HelpMessage(HelpMessageMode mode) strUsage += HelpMessageGroup(_("Wallet options:")); strUsage += HelpMessageOpt("-disablewallet", _("Do not load the wallet and disable wallet RPC calls")); strUsage += HelpMessageOpt("-keypool=<n>", strprintf(_("Set key pool size to <n> (default: %u)"), DEFAULT_KEYPOOL_SIZE)); - if (showDebug) - strUsage += HelpMessageOpt("-mintxfee=<amt>", strprintf("Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s)", + strUsage += HelpMessageOpt("-mintxfee=<amt>", strprintf(_("Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s)"), CURRENCY_UNIT, FormatMoney(DEFAULT_TRANSACTION_MINFEE))); strUsage += HelpMessageOpt("-paytxfee=<amt>", strprintf(_("Fee (in %s/kB) to add to transactions you send (default: %s)"), CURRENCY_UNIT, FormatMoney(payTxFee.GetFeePerK()))); |