Skip to content

Commit fa19a58

Browse files
author
MarcoFalke
committed
HelpMessage: Don't hide -mintxfee behind showDebug
1 parent faffc17 commit fa19a58

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/init.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -393,8 +393,7 @@ std::string HelpMessage(HelpMessageMode mode)
393393
strUsage += HelpMessageGroup(_("Wallet options:"));
394394
strUsage += HelpMessageOpt("-disablewallet", _("Do not load the wallet and disable wallet RPC calls"));
395395
strUsage += HelpMessageOpt("-keypool=<n>", strprintf(_("Set key pool size to <n> (default: %u)"), DEFAULT_KEYPOOL_SIZE));
396-
if (showDebug)
397-
strUsage += HelpMessageOpt("-mintxfee=<amt>", strprintf("Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s)",
396+
strUsage += HelpMessageOpt("-mintxfee=<amt>", strprintf(_("Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s)"),
398397
CURRENCY_UNIT, FormatMoney(DEFAULT_TRANSACTION_MINFEE)));
399398
strUsage += HelpMessageOpt("-paytxfee=<amt>", strprintf(_("Fee (in %s/kB) to add to transactions you send (default: %s)"),
400399
CURRENCY_UNIT, FormatMoney(payTxFee.GetFeePerK())));

0 commit comments

Comments
 (0)