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.
1 parent 99ec126 commit 9e9e31aCopy full SHA for 9e9e31a
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