Remove unused feebumper code

This commit is contained in:
MarcoFalke 2022-03-14 16:12:26 +01:00
parent 25d045a9ec
commit fae5d06eed
No known key found for this signature in database
GPG key ID: CE2B75697E69A548

View file

@ -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;
}