mempool – What’s wrong with the recent “one-shot fee rate replacement” proposal?

TL;DR: Due to the two sets of asymmetric rotation rules, a total of 5 transactions is enough to create a rotation cycle that beats each other. This allows an attacker to rebroadcast the same transaction over and over again, paying for at most one small transaction per block.
There are 2 confirmed UTXOs. C1 and C2. Let’s say 20s/vB is the bottom of the first block.
- Generate large, low-fee transactions.
tx_LL1 second/vB to 100,000 vB (fee: 100,000 seconds). Consumes confirmed output.C1And here is the outputtx_LL:0. - Attach small, low-fee transactions.
tx_LSAs a child using 100vB at 1s/vB (fee: 100s)tx_LL:0.
- you rbf
tx_LSWith high-cost transactionsC2andtx_LL:0In a new dealtx_HS.tx_HSIt has 5000vB and pays 21s/vB, but it consumes output at the upper end of the lower rate, so its mining score is only 1.95s/vB.
- you rbf
tx_LLandtx_HSwithtx_LMYou have 100,000 vB and pay 3.05 s/vB (fee: 305,000 s) using the output.C1andC2. This is acceptable.tx_LLBecause it is a direct conflicttx_HSYou don’t have to win it yourself.
- Replace using the new RBFr rules.
tx_LMSmall, high-fee transactionstx_RBFrWith 100vB you pay and spend 20s/vB (fee: 2000s).C2And make it the top block of the mempool.tx_LMIt was not scheduled to be in the next block,tx_RBFrPay more than 1.25 times the commission.tx_LM. So this is allowed under the new rules.
- Then rebroadcast it.
tx_LLandtx_LSbecauseC1No more spending.
- Replace both immediately.
tx_LSandtx_RBFrwithtx_HS.tx_HSIt has a commission rate of 21s/vB, which is higher than:tx_RBFr(20s/vB) andtx_LS(1s/vB) and pays more absolute fees than both (105,000s vs 2000s + 100s). But because it’s that child’s childtx_LLThe mining score is only 1.95s/vB.
Repeat 4.~7. The idea is to cycle through every node in the network with the same five transactions ad nauseam. Rolling the lock time or sequence so that the transaction has a new TXID at each iteration while using the same UTXO. The only transactions at risk of being mined are: tx_RBFr Cost is 2000 seconds. If it is included in the block, re-initiate the newly confirmed UTXO into your account. c2'.


