Skip to content

Commit 9e9e31a

Browse files
committed
Fix qt build broken by 5a5e4e9
1 parent 99ec126 commit 9e9e31a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qt/walletmodel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -661,7 +661,7 @@ bool WalletModel::transactionCanBeBumped(uint256 hash) const
661661
{
662662
LOCK2(cs_main, wallet->cs_wallet);
663663
const CWalletTx *wtx = wallet->GetWalletTx(hash);
664-
return wtx && SignalsOptInRBF(*wtx) && !wtx->mapValue.count("replaced_by_txid");
664+
return wtx && SignalsOptInRBF(*(wtx->tx)) && !wtx->mapValue.count("replaced_by_txid");
665665
}
666666

667667
bool WalletModel::bumpFee(uint256 hash)

0 commit comments

Comments
 (0)