Skip to content

Commit 53238ff

Browse files
author
MarcoFalke
committed
Clarify what minrelaytxfee does
1 parent abd8b76 commit 53238ff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/init.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ std::string HelpMessage(HelpMessageMode mode)
434434
strUsage += HelpMessageOpt("-relaypriority", strprintf("Require high priority for relaying free or low-fee transactions (default: %u)", 1));
435435
strUsage += HelpMessageOpt("-maxsigcachesize=<n>", strprintf("Limit size of signature cache to <n> entries (default: %u)", 50000));
436436
}
437-
strUsage += HelpMessageOpt("-minrelaytxfee=<amt>", strprintf(_("Fees (in %s/kB) smaller than this are considered zero fee for relaying (default: %s)"),
437+
strUsage += HelpMessageOpt("-minrelaytxfee=<amt>", strprintf(_("Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s)"),
438438
CURRENCY_UNIT, FormatMoney(::minRelayTxFee.GetFeePerK())));
439439
strUsage += HelpMessageOpt("-printtoconsole", _("Send trace/debug info to console instead of debug.log file"));
440440
if (showDebug)

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ size_t nCoinCacheUsage = 5000 * 300;
7474
uint64_t nPruneTarget = 0;
7575
bool fAlerts = DEFAULT_ALERTS;
7676

77-
/** Fees smaller than this (in satoshi) are considered zero fee (for relaying and mining) */
77+
/** Fees smaller than this (in satoshi) are considered zero fee (for relaying, mining and transaction creation) */
7878
CFeeRate minRelayTxFee = CFeeRate(1000);
7979

8080
CTxMemPool mempool(::minRelayTxFee);

0 commit comments

Comments
 (0)