Skip to content

Commit 6342a48

Browse files
author
MarcoFalke
committed
Init: Use DEFAULT_TRANSACTION_MINFEE in help message
1 parent a9c73a1 commit 6342a48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/init.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ std::string HelpMessage(HelpMessageMode mode)
374374
strUsage += HelpMessageOpt("-keypool=<n>", strprintf(_("Set key pool size to <n> (default: %u)"), 100));
375375
if (showDebug)
376376
strUsage += HelpMessageOpt("-mintxfee=<amt>", strprintf("Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s)",
377-
CURRENCY_UNIT, FormatMoney(CWallet::minTxFee.GetFeePerK())));
377+
CURRENCY_UNIT, FormatMoney(DEFAULT_TRANSACTION_MINFEE)));
378378
strUsage += HelpMessageOpt("-paytxfee=<amt>", strprintf(_("Fee (in %s/kB) to add to transactions you send (default: %s)"),
379379
CURRENCY_UNIT, FormatMoney(payTxFee.GetFeePerK())));
380380
strUsage += HelpMessageOpt("-rescan", _("Rescan the block chain for missing wallet transactions") + " " + _("on startup"));

0 commit comments

Comments
 (0)