Replace-by-fee (RBF)
Also covering BIP125 and Opt-in Replace-by-Fee
Replace-By-Fee (RBF) is a node policy that allows an unconfirmed transaction in a mempool to be replaced with a different transaction that spends at least one of the same inputs and which pays a higher transaction fee.
Different node software can use different RBF rules, so there have been several variations. The most widely-used form of RBF today is BIP125 opt-in RBF as implemented in Bitcoin Core 0.12.0 and subsequent versions; this allows the creator of a transaction to signal that they’re willing to allow it to be replaced by a higher-paying version. An alternative form of RBF is full-RBF that allows any transaction to be replaced whether or not it signals BIP125 replacability.
BIP125 requires a replacement transaction to pay both higher feerate (BTC/vbyte) and a higher absolute fee (total BTC). This can make multiparty transactions that want to use RBF vulnerable to transaction pinning attacks, and so an occasional discussion topic is proposals to allow RBF to operate solely on a feerate basis.
Primary code and documentation
Optech newsletter and website mentions
2021
- Recovering lost LN funding transactions after RBF fee bumping
- Question: would first-seen-safe prevent confirmed RBF double spends?
2020
- Sparrow wallet adds support for RBF fee bumping
- C-Lightning #3870 implements RBF scorched earth for penalty transactions
- Bitcoin Core #16373 allows the bumpfee RPC used for RBF to return a PSBT
2019
- Compatibility matrix—Replace by Fee
- Bitcoin Core removes
mempoolreplacement
configuration option - LND adds support for RBF fee bumping
- Proposal to override some BIP125 RBF conditions
- RBF in the wild (survey of RBF usage)
2018
See also
Previous Topic:
Point Time Locked Contracts (PTLCs)
Next Topic:
Reproducible builds