mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 04:52:59 +01:00
Fix qt build broken by 5a5e4e9
This commit is contained in:
parent
99ec12666b
commit
9e9e31aa10
@ -661,7 +661,7 @@ bool WalletModel::transactionCanBeBumped(uint256 hash) const
|
|||||||
{
|
{
|
||||||
LOCK2(cs_main, wallet->cs_wallet);
|
LOCK2(cs_main, wallet->cs_wallet);
|
||||||
const CWalletTx *wtx = wallet->GetWalletTx(hash);
|
const CWalletTx *wtx = wallet->GetWalletTx(hash);
|
||||||
return wtx && SignalsOptInRBF(*wtx) && !wtx->mapValue.count("replaced_by_txid");
|
return wtx && SignalsOptInRBF(*(wtx->tx)) && !wtx->mapValue.count("replaced_by_txid");
|
||||||
}
|
}
|
||||||
|
|
||||||
bool WalletModel::bumpFee(uint256 hash)
|
bool WalletModel::bumpFee(uint256 hash)
|
||||||
|
Loading…
Reference in New Issue
Block a user