diff options
author | MarcoFalke <falke.marco@gmail.com> | 2015-10-29 16:52:40 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2015-10-29 16:52:40 +0100 |
commit | 6342a4889bc4add42c270e1e0aee246a7f0692dc (patch) | |
tree | 31f04f5dba3b802ad901aac945c08af538f76f9b /src | |
parent | a9c73a130ebf2369381241d0053c8fa0a301e0fc (diff) |
Init: Use DEFAULT_TRANSACTION_MINFEE in help message
Diffstat (limited to 'src')
-rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index f03388120c..48680edc24 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -374,7 +374,7 @@ std::string HelpMessage(HelpMessageMode mode) strUsage += HelpMessageOpt("-keypool=<n>", strprintf(_("Set key pool size to <n> (default: %u)"), 100)); if (showDebug) strUsage += HelpMessageOpt("-mintxfee=<amt>", strprintf("Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s)", - CURRENCY_UNIT, FormatMoney(CWallet::minTxFee.GetFeePerK()))); + 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()))); strUsage += HelpMessageOpt("-rescan", _("Rescan the block chain for missing wallet transactions") + " " + _("on startup")); |