Skip to content

Commit bdd5543

Browse files
committed
Clarify help message for -discardfee
1 parent 70888a3 commit bdd5543

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/wallet/wallet.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3839,8 +3839,8 @@ std::string CWallet::GetWalletHelpString(bool showDebug)
38393839
strUsage += HelpMessageOpt("-keypool=<n>", strprintf(_("Set key pool size to <n> (default: %u)"), DEFAULT_KEYPOOL_SIZE));
38403840
strUsage += HelpMessageOpt("-fallbackfee=<amt>", strprintf(_("A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s)"),
38413841
CURRENCY_UNIT, FormatMoney(DEFAULT_FALLBACK_FEE)));
3842-
strUsage += HelpMessageOpt("-discardfee=<amt>", strprintf(_("The fee rate (in %s/kB) used to discard change (to fee) if it would be dust at this fee rate (default: %s) "
3843-
"Note: We will always discard up to the dust relay fee and a discard fee above that is limited by the longest target fee estimate"),
3842+
strUsage += HelpMessageOpt("-discardfee=<amt>", strprintf(_("The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). "
3843+
"Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target"),
38443844
CURRENCY_UNIT, FormatMoney(DEFAULT_DISCARD_FEE)));
38453845
strUsage += HelpMessageOpt("-mintxfee=<amt>", strprintf(_("Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s)"),
38463846
CURRENCY_UNIT, FormatMoney(DEFAULT_TRANSACTION_MINFEE)));

0 commit comments

Comments
 (0)