We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 99ec126 + 9e9e31a commit 045a809Copy full SHA for 045a809
src/qt/walletmodel.cpp
@@ -661,7 +661,7 @@ bool WalletModel::transactionCanBeBumped(uint256 hash) const
661
{
662
LOCK2(cs_main, wallet->cs_wallet);
663
const CWalletTx *wtx = wallet->GetWalletTx(hash);
664
- return wtx && SignalsOptInRBF(*wtx) && !wtx->mapValue.count("replaced_by_txid");
+ return wtx && SignalsOptInRBF(*(wtx->tx)) && !wtx->mapValue.count("replaced_by_txid");
665
}
666
667
bool WalletModel::bumpFee(uint256 hash)
0 commit comments