Skip to content

Commit 6da5de5

Browse files
committed
[policy] lower default minrelaytxfee and incrementalrelayfee to 100sat/kvB
Let's say an attacker wants to use/exhaust the network's bandwidth, and has the choice between renting resources from a commercial provider and getting the network to "spam" itself it by sending unconfirmed transactions. We'd like the latter to be more expensive than the former. The bandwidth for relaying a transaction across the network is roughly its serialized size (plus relay overhead) x number of nodes. A 1000vB transaction is 1000-4000B serialized. With 100k nodes, that's 0.1-0.4GB If the going rate for commercial services is 10c/GB, that's like 1-4c per kvB of transaction data, so a 1000vB transaction should pay at least $0.04. At a price of 120k USD/BTC, 100sat is about $0.12. This price allows us to tolerate a large decrease in the conversion rate or increase in the number of nodes.
1 parent 2e515d2 commit 6da5de5

File tree

12 files changed

+49
-47
lines changed

12 files changed

+49
-47
lines changed

src/policy/policy.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ static constexpr unsigned int MAX_STANDARD_TX_SIGOPS_COST{MAX_BLOCK_SIGOPS_COST/
4141
/** The maximum number of potentially executed legacy signature operations in a single standard tx */
4242
static constexpr unsigned int MAX_TX_LEGACY_SIGOPS{2'500};
4343
/** Default for -incrementalrelayfee, which sets the minimum feerate increase for mempool limiting or replacement **/
44-
static constexpr unsigned int DEFAULT_INCREMENTAL_RELAY_FEE{1000};
44+
static constexpr unsigned int DEFAULT_INCREMENTAL_RELAY_FEE{100};
4545
/** Default for -bytespersigop */
4646
static constexpr unsigned int DEFAULT_BYTES_PER_SIGOP{20};
4747
/** Default for -permitbaremultisig */
@@ -63,7 +63,7 @@ static constexpr unsigned int MAX_STANDARD_SCRIPTSIG_SIZE{1650};
6363
* outputs below the new threshold */
6464
static constexpr unsigned int DUST_RELAY_TX_FEE{3000};
6565
/** Default for -minrelaytxfee, minimum relay fee for transactions */
66-
static constexpr unsigned int DEFAULT_MIN_RELAY_TX_FEE{1000};
66+
static constexpr unsigned int DEFAULT_MIN_RELAY_TX_FEE{100};
6767
/** Default for -limitancestorcount, max number of in-mempool ancestors */
6868
static constexpr unsigned int DEFAULT_ANCESTOR_LIMIT{25};
6969
/** Default for -limitancestorsize, maximum kilobytes of tx + all in-mempool ancestors */

src/test/mempool_tests.cpp

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -443,15 +443,15 @@ BOOST_AUTO_TEST_CASE(MempoolSizeLimitTest)
443443
tx1.vout.resize(1);
444444
tx1.vout[0].scriptPubKey = CScript() << OP_1 << OP_EQUAL;
445445
tx1.vout[0].nValue = 10 * COIN;
446-
AddToMempool(pool, entry.Fee(10000LL).FromTx(tx1));
446+
AddToMempool(pool, entry.Fee(1000LL).FromTx(tx1));
447447

448448
CMutableTransaction tx2 = CMutableTransaction();
449449
tx2.vin.resize(1);
450450
tx2.vin[0].scriptSig = CScript() << OP_2;
451451
tx2.vout.resize(1);
452452
tx2.vout[0].scriptPubKey = CScript() << OP_2 << OP_EQUAL;
453453
tx2.vout[0].nValue = 10 * COIN;
454-
AddToMempool(pool, entry.Fee(5000LL).FromTx(tx2));
454+
AddToMempool(pool, entry.Fee(500LL).FromTx(tx2));
455455

456456
pool.TrimToSize(pool.DynamicMemoryUsage()); // should do nothing
457457
BOOST_CHECK(pool.exists(tx1.GetHash()));
@@ -469,7 +469,7 @@ BOOST_AUTO_TEST_CASE(MempoolSizeLimitTest)
469469
tx3.vout.resize(1);
470470
tx3.vout[0].scriptPubKey = CScript() << OP_3 << OP_EQUAL;
471471
tx3.vout[0].nValue = 10 * COIN;
472-
AddToMempool(pool, entry.Fee(20000LL).FromTx(tx3));
472+
AddToMempool(pool, entry.Fee(2000LL).FromTx(tx3));
473473

474474
pool.TrimToSize(pool.DynamicMemoryUsage() * 3 / 4); // tx3 should pay for tx2 (CPFP)
475475
BOOST_CHECK(!pool.exists(tx1.GetHash()));
@@ -481,7 +481,7 @@ BOOST_AUTO_TEST_CASE(MempoolSizeLimitTest)
481481
BOOST_CHECK(!pool.exists(tx2.GetHash()));
482482
BOOST_CHECK(!pool.exists(tx3.GetHash()));
483483

484-
CFeeRate maxFeeRateRemoved(25000, GetVirtualTransactionSize(CTransaction(tx3)) + GetVirtualTransactionSize(CTransaction(tx2)));
484+
CFeeRate maxFeeRateRemoved(2500, GetVirtualTransactionSize(CTransaction(tx3)) + GetVirtualTransactionSize(CTransaction(tx2)));
485485
BOOST_CHECK_EQUAL(pool.GetMinFee(1).GetFeePerK(), maxFeeRateRemoved.GetFeePerK() + DEFAULT_INCREMENTAL_RELAY_FEE);
486486

487487
CMutableTransaction tx4 = CMutableTransaction();
@@ -532,10 +532,10 @@ BOOST_AUTO_TEST_CASE(MempoolSizeLimitTest)
532532
tx7.vout[1].scriptPubKey = CScript() << OP_7 << OP_EQUAL;
533533
tx7.vout[1].nValue = 10 * COIN;
534534

535-
AddToMempool(pool, entry.Fee(7000LL).FromTx(tx4));
536-
AddToMempool(pool, entry.Fee(1000LL).FromTx(tx5));
537-
AddToMempool(pool, entry.Fee(1100LL).FromTx(tx6));
538-
AddToMempool(pool, entry.Fee(9000LL).FromTx(tx7));
535+
AddToMempool(pool, entry.Fee(700LL).FromTx(tx4));
536+
AddToMempool(pool, entry.Fee(100LL).FromTx(tx5));
537+
AddToMempool(pool, entry.Fee(110LL).FromTx(tx6));
538+
AddToMempool(pool, entry.Fee(900LL).FromTx(tx7));
539539

540540
// we only require this to remove, at max, 2 txn, because it's not clear what we're really optimizing for aside from that
541541
pool.TrimToSize(pool.DynamicMemoryUsage() - 1);
@@ -544,17 +544,17 @@ BOOST_AUTO_TEST_CASE(MempoolSizeLimitTest)
544544
BOOST_CHECK(!pool.exists(tx7.GetHash()));
545545

546546
if (!pool.exists(tx5.GetHash()))
547-
AddToMempool(pool, entry.Fee(1000LL).FromTx(tx5));
548-
AddToMempool(pool, entry.Fee(9000LL).FromTx(tx7));
547+
AddToMempool(pool, entry.Fee(100LL).FromTx(tx5));
548+
AddToMempool(pool, entry.Fee(900LL).FromTx(tx7));
549549

550550
pool.TrimToSize(pool.DynamicMemoryUsage() / 2); // should maximize mempool size by only removing 5/7
551551
BOOST_CHECK(pool.exists(tx4.GetHash()));
552552
BOOST_CHECK(!pool.exists(tx5.GetHash()));
553553
BOOST_CHECK(pool.exists(tx6.GetHash()));
554554
BOOST_CHECK(!pool.exists(tx7.GetHash()));
555555

556-
AddToMempool(pool, entry.Fee(1000LL).FromTx(tx5));
557-
AddToMempool(pool, entry.Fee(9000LL).FromTx(tx7));
556+
AddToMempool(pool, entry.Fee(100LL).FromTx(tx5));
557+
AddToMempool(pool, entry.Fee(900LL).FromTx(tx7));
558558

559559
std::vector<CTransactionRef> vtx;
560560
SetMockTime(42);

src/test/rbf_tests.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -238,10 +238,10 @@ BOOST_FIXTURE_TEST_CASE(rbf_helper_functions, TestChain100Setup)
238238
BOOST_CHECK(PaysForRBF(high_fee, high_fee - 1, 1, CFeeRate(0), unused_txid).has_value());
239239
BOOST_CHECK(PaysForRBF(high_fee + 1, high_fee, 1, CFeeRate(0), unused_txid).has_value());
240240
// Additional fees must cover the replacement's vsize at incremental relay fee
241-
BOOST_CHECK(PaysForRBF(high_fee, high_fee + 1, 2, incremental_relay_feerate, unused_txid).has_value());
242-
BOOST_CHECK(PaysForRBF(high_fee, high_fee + 2, 2, incremental_relay_feerate, unused_txid) == std::nullopt);
243-
BOOST_CHECK(PaysForRBF(high_fee, high_fee + 2, 2, higher_relay_feerate, unused_txid).has_value());
244-
BOOST_CHECK(PaysForRBF(high_fee, high_fee + 4, 2, higher_relay_feerate, unused_txid) == std::nullopt);
241+
BOOST_CHECK(PaysForRBF(high_fee, high_fee + 1, 11, incremental_relay_feerate, unused_txid).has_value());
242+
BOOST_CHECK(PaysForRBF(high_fee, high_fee + 1, 10, incremental_relay_feerate, unused_txid) == std::nullopt);
243+
BOOST_CHECK(PaysForRBF(high_fee, high_fee + 2, 11, higher_relay_feerate, unused_txid).has_value());
244+
BOOST_CHECK(PaysForRBF(high_fee, high_fee + 4, 20, higher_relay_feerate, unused_txid) == std::nullopt);
245245
BOOST_CHECK(PaysForRBF(low_fee, high_fee, 99999999, incremental_relay_feerate, unused_txid).has_value());
246246
BOOST_CHECK(PaysForRBF(low_fee, high_fee + 99999999, 99999999, incremental_relay_feerate, unused_txid) == std::nullopt);
247247

test/functional/feature_rbf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ def test_replacement_relay_fee(self):
585585

586586
# Higher fee, higher feerate, different txid, but the replacement does not provide a relay
587587
# fee conforming to node's `incrementalrelayfee` policy of 1000 sat per KB.
588-
assert_equal(self.nodes[0].getmempoolinfo()["incrementalrelayfee"], Decimal("0.00001"))
588+
assert_equal(self.nodes[0].getmempoolinfo()["incrementalrelayfee"], Decimal("0.000001"))
589589
tx.vout[0].nValue -= 1
590590
assert_raises_rpc_error(-26, "insufficient fee", self.nodes[0].sendrawtransaction, tx.serialize().hex())
591591

test/functional/mempool_ephemeral_dust.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def test_non_truc(self):
216216

217217
res = self.nodes[0].submitpackage([dusty_tx["hex"], sweep_tx["hex"]])
218218
assert_equal(res["package_msg"], "transaction failed")
219-
assert_equal(res["tx-results"][dusty_tx["wtxid"]]["error"], "min relay fee not met, 0 < 147")
219+
assert_equal(res["tx-results"][dusty_tx["wtxid"]]["error"], "min relay fee not met, 0 < 15")
220220

221221
assert_equal(self.nodes[0].getrawmempool(), [])
222222

test/functional/mempool_limit.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def test_mid_package_replacement(self):
206206
# coin is no longer available, but the cache could still contain the tx.
207207
cpfp_parent = self.wallet.create_self_transfer(
208208
utxo_to_spend=replaced_tx["new_utxo"],
209-
fee_rate=mempoolmin_feerate - Decimal('0.00001'),
209+
fee_rate=mempoolmin_feerate - Decimal('0.000001'),
210210
confirmed_only=True)
211211

212212
self.wallet.rescan_utxos()
@@ -312,9 +312,9 @@ def run_test(self):
312312
target_vsize_each = 50000
313313
assert_greater_than(target_vsize_each * 2 * 3, node.getmempoolinfo()["maxmempool"] - node.getmempoolinfo()["bytes"])
314314
# Should be a true CPFP: parent's feerate is just below mempool min feerate
315-
parent_feerate = mempoolmin_feerate - Decimal("0.000001") # 0.1 sats/vbyte below min feerate
315+
parent_feerate = mempoolmin_feerate - Decimal("0.0000001") # 0.01 sats/vbyte below min feerate
316316
# Parent + child is above mempool minimum feerate
317-
child_feerate = (worst_feerate_btcvb * 1000) - Decimal("0.000001") # 0.1 sats/vbyte below worst feerate
317+
child_feerate = (worst_feerate_btcvb * 1000) - Decimal("0.0000001") # 0.01 sats/vbyte below worst feerate
318318
# However, when eviction is triggered, these transactions should be at the bottom.
319319
# This assertion assumes parent and child are the same size.
320320
miniwallet.rescan_utxos()

test/functional/mempool_package_rbf.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -162,13 +162,13 @@ def test_package_rbf_additional_fees(self):
162162
self.log.info("Check replacement pays for incremental bandwidth")
163163
_, placeholder_txns3 = self.create_simple_package(coin)
164164
package_3_size = sum([tx.get_vsize() for tx in placeholder_txns3])
165-
incremental_sats_required = Decimal(package_3_size) / COIN
166-
incremental_sats_short = incremental_sats_required - Decimal("0.00000001")
165+
incremental_sats_required = (Decimal(package_3_size * 0.1) / COIN).quantize(Decimal("0.00000001"))
166+
incremental_sats_short = incremental_sats_required - Decimal("0.00000005")
167167
# Recreate the package with slightly higher fee once we know the size of the new package, but still short of required fee
168168
failure_package_hex3, failure_package_txns3 = self.create_simple_package(coin, parent_fee=DEFAULT_FEE, child_fee=DEFAULT_CHILD_FEE + incremental_sats_short)
169169
assert_equal(package_3_size, sum([tx.get_vsize() for tx in failure_package_txns3]))
170170
pkg_results3 = node.submitpackage(failure_package_hex3)
171-
assert_equal(f"package RBF failed: insufficient anti-DoS fees, rejecting replacement {failure_package_txns3[1].txid_hex}, not enough additional fees to relay; {incremental_sats_short} < {incremental_sats_required}", pkg_results3["package_msg"])
171+
assert_equal(f"package RBF failed: insufficient anti-DoS fees, rejecting replacement {failure_package_txns3[1].txid_hex}, not enough additional fees to relay; {incremental_sats_short:8f} < {incremental_sats_required:8f}", pkg_results3["package_msg"])
172172
self.assert_mempool_contents(expected=package_txns1)
173173

174174
success_package_hex3, success_package_txns3 = self.create_simple_package(coin, parent_fee=DEFAULT_FEE, child_fee=DEFAULT_CHILD_FEE + incremental_sats_required)
@@ -562,12 +562,13 @@ def test_child_conflicts_parent_mempool_ancestor(self):
562562
)
563563

564564
node.sendrawtransaction(grandparent_result["hex"])
565+
minrelayfeerate = node.getnetworkinfo()["relayfee"]
565566

566567
# Now make package of two descendants that looks
567568
# like a cpfp where the parent can't get in on its own
568569
self.ctr += 1
569570
parent_result = self.wallet.create_self_transfer(
570-
fee_rate=Decimal('0.00001000'),
571+
fee_rate=minrelayfeerate,
571572
utxo_to_spend=grandparent_result["new_utxo"],
572573
sequence=MAX_BIP125_RBF_SEQUENCE - self.ctr,
573574
)

test/functional/p2p_1p1c_network.py

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@
1313
from math import ceil
1414

1515
from test_framework.mempool_util import (
16+
DEFAULT_MIN_RELAY_TX_FEE,
1617
fill_mempool,
1718
)
1819
from test_framework.messages import (
20+
COIN,
1921
msg_tx,
2022
)
2123
from test_framework.p2p import (
@@ -31,9 +33,6 @@
3133
MiniWalletMode,
3234
)
3335

34-
# 1sat/vB feerate denominated in BTC/KvB
35-
FEERATE_1SAT_VB = Decimal("0.00001000")
36-
3736
class PackageRelayTest(BitcoinTestFramework):
3837
def set_test_params(self):
3938
self.setup_clean_chain = True
@@ -49,12 +48,12 @@ def raise_network_minfee(self):
4948

5049
self.log.debug("Check that all nodes' mempool minimum feerates are above min relay feerate")
5150
for node in self.nodes:
52-
assert_equal(node.getmempoolinfo()['minrelaytxfee'], FEERATE_1SAT_VB)
53-
assert_greater_than(node.getmempoolinfo()['mempoolminfee'], FEERATE_1SAT_VB)
51+
assert_equal(node.getmempoolinfo()['minrelaytxfee'], Decimal(DEFAULT_MIN_RELAY_TX_FEE) / COIN)
52+
assert_greater_than(node.getmempoolinfo()['mempoolminfee'], Decimal(DEFAULT_MIN_RELAY_TX_FEE) / COIN)
5453

5554
def create_basic_1p1c(self, wallet):
56-
low_fee_parent = wallet.create_self_transfer(fee_rate=FEERATE_1SAT_VB, confirmed_only=True)
57-
high_fee_child = wallet.create_self_transfer(utxo_to_spend=low_fee_parent["new_utxo"], fee_rate=999*FEERATE_1SAT_VB)
55+
low_fee_parent = wallet.create_self_transfer(fee_rate=Decimal(DEFAULT_MIN_RELAY_TX_FEE) / COIN, confirmed_only=True)
56+
high_fee_child = wallet.create_self_transfer(utxo_to_spend=low_fee_parent["new_utxo"], fee_rate=999*Decimal(DEFAULT_MIN_RELAY_TX_FEE)/ COIN)
5857
package_hex_basic = [low_fee_parent["hex"], high_fee_child["hex"]]
5958
return package_hex_basic, low_fee_parent["tx"], high_fee_child["tx"]
6059

@@ -85,8 +84,8 @@ def create_package_2outs(self, wallet):
8584
return [low_fee_parent_2outs["hex"], high_fee_child_2outs["hex"]], low_fee_parent_2outs["tx"], high_fee_child_2outs["tx"]
8685

8786
def create_package_2p1c(self, wallet):
88-
parent1 = wallet.create_self_transfer(fee_rate=FEERATE_1SAT_VB*10, confirmed_only=True)
89-
parent2 = wallet.create_self_transfer(fee_rate=FEERATE_1SAT_VB*20, confirmed_only=True)
87+
parent1 = wallet.create_self_transfer(fee_rate=Decimal(DEFAULT_MIN_RELAY_TX_FEE) / COIN * 10, confirmed_only=True)
88+
parent2 = wallet.create_self_transfer(fee_rate=Decimal(DEFAULT_MIN_RELAY_TX_FEE) / COIN * 20, confirmed_only=True)
9089
child = wallet.create_self_transfer_multi(
9190
utxos_to_spend=[parent1["new_utxo"], parent2["new_utxo"]],
9291
fee_per_output=999*parent1["tx"].get_vsize(),

test/functional/p2p_ibd_txrelay.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,17 @@
2828
)
2929
from test_framework.test_framework import BitcoinTestFramework
3030

31-
MAX_FEE_FILTER = Decimal(9170997) / COIN
32-
NORMAL_FEE_FILTER = Decimal(100) / COIN
31+
MAX_FEE_FILTER = Decimal(9936506) / COIN
32+
NORMAL_FEE_FILTER = Decimal(10) / COIN
3333

3434

3535
class P2PIBDTxRelayTest(BitcoinTestFramework):
3636
def set_test_params(self):
3737
self.setup_clean_chain = True
3838
self.num_nodes = 2
3939
self.extra_args = [
40-
["-minrelaytxfee={}".format(NORMAL_FEE_FILTER)],
41-
["-minrelaytxfee={}".format(NORMAL_FEE_FILTER)],
40+
["-minrelaytxfee={:.8f}".format(NORMAL_FEE_FILTER)],
41+
["-minrelaytxfee={:.8f}".format(NORMAL_FEE_FILTER)],
4242
]
4343

4444
def run_test(self):

test/functional/p2p_opportunistic_1p1c.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,12 @@
1313
from test_framework.blocktools import MAX_STANDARD_TX_WEIGHT
1414
from test_framework.mempool_util import (
1515
create_large_orphan,
16+
DEFAULT_MIN_RELAY_TX_FEE,
1617
fill_mempool,
1718
)
1819
from test_framework.messages import (
1920
CInv,
21+
COIN,
2022
COutPoint,
2123
CTransaction,
2224
CTxIn,
@@ -79,13 +81,13 @@ def set_test_params(self):
7981
]]
8082

8183
def create_tx_below_mempoolminfee(self, wallet, utxo_to_spend=None):
82-
"""Create a 1-input 1sat/vB transaction using a confirmed UTXO. Decrement and use
84+
"""Create a 1-input 0.1sat/vB transaction using a confirmed UTXO. Decrement and use
8385
self.sequence so that subsequent calls to this function result in unique transactions."""
8486

8587
self.sequence -= 1
86-
assert_greater_than(self.nodes[0].getmempoolinfo()["mempoolminfee"], FEERATE_1SAT_VB)
88+
assert_greater_than(self.nodes[0].getmempoolinfo()["mempoolminfee"], Decimal(DEFAULT_MIN_RELAY_TX_FEE) / COIN)
8789

88-
return wallet.create_self_transfer(fee_rate=FEERATE_1SAT_VB, sequence=self.sequence, utxo_to_spend=utxo_to_spend, confirmed_only=True)
90+
return wallet.create_self_transfer(fee_rate=Decimal(DEFAULT_MIN_RELAY_TX_FEE) / COIN, sequence=self.sequence, utxo_to_spend=utxo_to_spend, confirmed_only=True)
8991

9092
@cleanup
9193
def test_basic_child_then_parent(self):

0 commit comments

Comments
 (0)