Skip to content

Commit 9e93640

Browse files
committed
Drop minRelayTxFee to 1000
There is no exact science to setting this parameter, but 5000 (just over 1 US cent at the time of writing) is higher than the cost to relay a transaction around the network (the new benchmark due to mempool limiting).
1 parent 074cb15 commit 9e93640

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ uint64_t nPruneTarget = 0;
7575
bool fAlerts = DEFAULT_ALERTS;
7676

7777
/** Fees smaller than this (in satoshi) are considered zero fee (for relaying and mining) */
78-
CFeeRate minRelayTxFee = CFeeRate(5000);
78+
CFeeRate minRelayTxFee = CFeeRate(1000);
7979

8080
CTxMemPool mempool(::minRelayTxFee);
8181

0 commit comments

Comments
 (0)