Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
98 changes: 98 additions & 0 deletions _problems/fee-bumping.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
---
layout: problem
title: "Replacement rules and Fee Bumping"
tags: lightning
status: open
maintainer: LLFourn
---

Layer-2 protocols like [Lightning] treat the blockchain as a dispute resolution and settlement layer.
Only when their counterparty is unreachable or uncooperative does a participant have to unilaterally broadcast a transaction.
The protocol often requires a party to confirm a transaction within a certain time so the funds are distributed fairly.
So how can layer-2 protocol designers guarantee an opportunity to confirm a time sensitive transaction to an honest party under reasonable assumptions?
Since miners prioritize transactions based on their feerate, the only effective way is to make sure participants can set the fee of the transactions and ideally even increase it repeatedly after the transaction has been broadcast to the network shoud be it insufficient.

There are two approaches available for fee bumping in Bitcoin today:

1. *Replace-by-Fee* ([RBF]): The user simply signs a new transaction that is likely to replace the old one since it pays a higher fee.
2. *Child-Pays-For-Parent* ([CPFP]): The original transaction remains unchanged but a new transaction with a higher fee is signed which spends from the old one increasing the average feerate of the pair.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Right this is in the "Proposed Solutions" section.


The goal of a researcher considering this problem is to design a method for ensuring crucial layer-2 transactions are included in the chain in a timely fashion without all the complexity that comes with the present state of affairs.
Let's look at the implications of the current methods have on layer-2 protocols.

### Pre-signed Transactions

Often the transaction an honest party is racing against the clock to confirm is a *pre-signed* transaction.
It was signed when their counterparty was cooperative -- now the honest party needs to go on chain precisely because they are not cooperative.
If fees become persistently higher than the pre-signed transaction's fees the party may miss their deadline.
The obvious but suboptimal solution is to monitor fees closely and update any time-sensitive pre-signed transactions with the counterparty while they are online (this method is available via the [`update_fee`] message in lightning today).

It is much more desirable to allow the party to spontaneously increase the fee at will.
This can be done with [CPFP].
For example, in the [Lightning] protocol commitment transactions are designed with [anchor outputs] so they can be easily fee bumped through CPFP.

### Resource Usage of Replacement

Allowing a mempool transaction to be replaced by higher fee paying transactionrmay open up Bitcoin network nodes to *denial of service* (DoS) attacks.
Without replacement, a malicious party's ability to get your node to process a transaction is limited by the number of UTXOs they own.
With replacement an attacker can repeatedly spam your node with transactions that replace previous ones even if they only own a single UTXO.

To prevent effective denial of service attacks, replacement transactions have to follow some rather strict rules as defined in [BIP125].
In particular a replacement transaction must pay a higher absolute fee and a higher feerate than the transactions they are evicting and it must not evict more than 100 transactions.

For layer-2 protocols these rules had the unintended consequence of creating "pinning" attacks (see [Related Research](#related-research)).
For example, a malicious party could add 100 descendants to a transaction that conflicts with the one the honest party needs confirm.
Even if the honest party pays a large fee it still won't evict the malicious party's transaction since that would evict more than 100 transactions.
The other [BIP125] rules may be abused as well.

The Bitcoin core developers instincitvely introduced an exception to [BIP125]'s rules called the *[CPFP carve out]* to allow lightning designers to mitigate pinning attacks to some extent.
Unfortunately, using CPFP required a siginficant lightning protocol redesgin and will not be an effective solution until the Bitcoin network supports [package relay].
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: s/siginficant/significant/g, s/redesgin/redesign/g

Also input-based fee-bumping as roughly described in "A Stroll through Fee-Bumping Techniques" is another solution, equivalent to package-relay, though require softfork(s).


## Impact

The principles layer-2 protocol designers use to work around the [BIP125] rules an esoteric domain understood by only a handful of people.
Even those practiced in the occult [have made mistakes](https://lists.linuxfoundation.org/pipermail/lightning-dev/2020-September/002796.html) trying to design around them.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Another pitfall around malleability for fee-bumping : revault/practical-revault#83
Could be nice to track it.

Having a simple set of principles would increase the confidence in the resulting protocols and allow a wider group to understand and build layer-2 systems.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Another concern is base-layer protocols dev restraining tx-relay rules in a way hammering L2s, as an example : bitcoin/bitcoin#8279


## Potential Directions

1. **Reconsidering mempool and relay rules**: It is possible that mempool rules could be made less problematic for layer-2 protocol designers without harming the Bitcoin system.
The main concern with this approach is that the rules that are optimal for layer-2 protocols may not be the rules that are optimal for miner profit or preventing DoS attacks.
However, if tweaked relay rules were to allow layer-2 Bitcoin protocols to thrive then the increased value of the Bitcoin network could more than compensate miners for using a slightly suboptimal algorithm (as long as they don't introduce DoS attacks).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe that a mempool acceptance rules revamp can still combine security mechanism for L2s and miner incentives. In anyway, fee-bumping is good for miners as you're making the blockspace demand more competitive.

Copy link
Contributor Author

@LLFourn LLFourn Jun 4, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree and I think this concern can be dismissed in a different way: per-utxo transactions fee optimization is not important for miners as it will create negligible revenue. It is about making sure they have the highest fee paying transaction set from different utxos (i.e. different users are competing for blockspace). There is no need to necessarily resolve two transactions that share the same input strictly in favor of the one that pays the highest fee in absolute terms of feerate. Or at least DoS is the only concern here not revenue.

Hmm never mind this comment. I am going to try and refine my thoughts and add them as commentary (and possibly shrink the quoted sentence so it contains less of my personal commentary).

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm curious about more refined thoughts on this issue as I think we might have to switch from replace-by-fee to replace-by-feerate to solve some pinnings.

Further, having a consistent miner model w.r.t to conflicting transactions is an interesting research, likely deserves its own page too.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm curious about more refined thoughts on this issue as I think we might have to switch from replace-by-fee to replace-by-feerate to solve some pinnings.

Actually this was going to be the gist of my commentary! Along with how to better deal with the mass descendants eviction problem than BIP125.

Further, having a consistent miner model w.r.t to conflicting transactions is an interesting research, likely deserves its own page too.

Is this actually that deep of a topic? I'd say unless it turns out that there is a lot more than meets the eye then it's part of this.

2. **Consensus changes**: It may be possible introduce new ways of increasing an already broadcasted transaction's fee through a consensus change (see [Proposed Solutions](#proposed-solutions)).

## Proposed Solutions

In *[A Replacement for RBF and CPFP: Non-Destructive TXID Dependencies for Fee Sponsoring]* Rubin proposes allowing a transaction to sponsor another.
The sponsor transaction can only be included in a block if the transaction it is sponsoring is in it too.
The sponsor transaction's fees then increase the overall feerate of the pair of transactions.
The advantage of this idea is that it is always available to any transaction without the protocol designer having to consider fee bumping.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe you can mention "A Stroll through Fee-Bumping Techniques" where SIGHASH_ANYPREVOUT + SIGHASH_IOMAP as another solution to address those issues. I'll do a proper write-up on SIGHASH_IOMAP soon.


## Related Research

1. In *[CPFP Carve-Out for Fee-Prediction Issues in Contracting Applications (eg Lightning)]* Corallo introduces the idea of the [CPFP carve out] rule to help Lightning.
2. In *[RBF Pinning with Counterparties and Competing Interest]* Corallo describes a novel pinning attack against Lightning.
3. In *[Pinning : The Good, The Bad, The Ugly]* Riard further describes the problem of pinning attacks and gives several examples relevant to Lightning.
4. The *[Mempool and mining]* article on the Bitcoin core development wiki Daftuar provides the rationale for why the mempool rules are the way they are.

## Related Problems

*There is currently no related problems*

## Commentary

- [@ariard](https://github.com/ariard) provides some [useful commentary](https://github.com/bitcoin-problems/bitcoin-problems.github.io/pull/13#discussion_r641696641) on security models in the original pull request for this text.

[BIP125]: https://github.com/bitcoin/bips/blob/master/bip-0125.mediawiki
[`update_fee`]: https://github.com/lightningnetwork/lightning-rfc/blob/master/02-peer-protocol.md#updating-fees-update_fee
[Pinning : The Good, The Bad, The Ugly]: https://lists.linuxfoundation.org/pipermail/lightning-dev/2020-June/002758.html
[RBF Pinning with Counterparties and Competing Interest]: https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2020-April/017757.html
[A Replacement for RBF and CPFP: Non-Destructive TXID Dependencies for Fee Sponsoring]: https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2020-September/018168.html
[CPFP Carve-Out for Fee-Prediction Issues in Contracting Applications (eg Lightning)]: https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2018-November/016518.html
[Mempool and Mining]: https://github.com/bitcoin-core/bitcoin-devwiki/wiki/Mempool-and-mining
[CPFP carve out]: https://bitcoinops.org/en/topics/cpfp-carve-out/
[Lightning]: https://en.wikipedia.org/wiki/Lightning_Network
[RBF]: https://bitcoinops.org/en/topics/replace-by-fee/
[CPFP]: https://bitcoinops.org/en/topics/cpfp/
[anchor outputs]: https://bitcoinops.org/en/topics/anchor-outputs/
[package relay]: https://bitcoinops.org/en/topics/package-relay/