Skip to content

Commit 842c48d

Browse files
committed
Bump minrelaytxfee default
To bridge the time until a dynamic method for determining this fee is merged. This is especially aimed at the stable releases (0.10, 0.11) because full mempool limiting, as will be in 0.12, is too invasive and risky to backport. Github-Pull: #6793 Rebased-From: 28e3249 4e2efb3
1 parent 91ef4d9 commit 842c48d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ unsigned int nCoinCacheSize = 5000;
5656
bool fAlerts = DEFAULT_ALERTS;
5757

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

6161
CTxMemPool mempool(::minRelayTxFee);
6262

src/test/transaction_tests.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ BOOST_AUTO_TEST_CASE(test_IsStandard)
341341
t.vout[0].nValue = 501; // dust
342342
BOOST_CHECK(!IsStandardTx(t, reason));
343343

344-
t.vout[0].nValue = 601; // not dust
344+
t.vout[0].nValue = 2730; // not dust
345345
BOOST_CHECK(IsStandardTx(t, reason));
346346

347347
t.vout[0].scriptPubKey = CScript() << OP_1;

0 commit comments

Comments
 (0)