diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-11-09 16:53:08 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-11-09 17:17:04 +0100 |
| commit | 045a809234195aca43d9d2cf9e94652403398519 (patch) | |
| tree | 484663ae4d9b7c7cdf269bc429115704ba5668b4 /src | |
| parent | Merge #11074: Assert that CWallet::SyncMetaData finds oldest transaction. (diff) | |
| parent | Fix qt build broken by 5a5e4e9 (diff) | |
| download | discoin-045a809234195aca43d9d2cf9e94652403398519.tar.xz discoin-045a809234195aca43d9d2cf9e94652403398519.zip | |
Merge #11644: Fix qt build broken by 5a5e4e9
9e9e31a Fix qt build broken by 5a5e4e9 (Matt Corallo)
Pull request description:
#10368 broke qt build.
Tree-SHA512: 3ded6160f5c0034a15e1bb2bb3a065dd3846c069ba9f2320b0c1c3173067f426dbd9f2c637ad0190326e987f43eeed6af8d9f77e9d0a52aefda38d894912caba
Diffstat (limited to 'src')
| -rw-r--r-- | src/qt/walletmodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp index 53b1c2967..e1d066062 100644 --- a/src/qt/walletmodel.cpp +++ b/src/qt/walletmodel.cpp @@ -661,7 +661,7 @@ bool WalletModel::transactionCanBeBumped(uint256 hash) const { LOCK2(cs_main, wallet->cs_wallet); 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) |