aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/feebumper.cpp
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2022-03-14 16:12:26 +0100
committerMarcoFalke <falke.marco@gmail.com>2022-03-14 16:05:42 +0100
commitfae5d06eed7f766926b1dc6d2320a68c8e4375bc (patch)
tree7c1a52be6111f15e18e3822897304f7c6a8137d6 /src/wallet/feebumper.cpp
parent25d045a9ecc24a2752685d176c28f8f75bb100f6 (diff)
downloadbitcoin-fae5d06eed7f766926b1dc6d2320a68c8e4375bc.tar.xz
Remove unused feebumper code
Diffstat (limited to 'src/wallet/feebumper.cpp')
-rw-r--r--src/wallet/feebumper.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/wallet/feebumper.cpp b/src/wallet/feebumper.cpp
index 3552c14160..bc53180c0e 100644
--- a/src/wallet/feebumper.cpp
+++ b/src/wallet/feebumper.cpp
@@ -233,12 +233,6 @@ Result CreateRateBumpTransaction(CWallet& wallet, const uint256& txid, const CCo
// Write back transaction
mtx = CMutableTransaction(*tx_new);
- // Mark new tx not replaceable, if requested.
- if (!coin_control.m_signal_bip125_rbf.value_or(wallet.m_signal_rbf)) {
- for (auto& input : mtx.vin) {
- if (input.nSequence < 0xfffffffe) input.nSequence = 0xfffffffe;
- }
- }
return Result::OK;
}