diff options
| author | Matt Corallo <[email protected]> | 2017-11-09 10:43:13 -0500 |
|---|---|---|
| committer | Matt Corallo <[email protected]> | 2017-11-09 10:43:13 -0500 |
| commit | 9e9e31aa10190bcf9136280946e49d893262f7f8 (patch) | |
| tree | 484663ae4d9b7c7cdf269bc429115704ba5668b4 /src | |
| parent | Merge #11074: Assert that CWallet::SyncMetaData finds oldest transaction. (diff) | |
| download | discoin-9e9e31aa10190bcf9136280946e49d893262f7f8.tar.xz discoin-9e9e31aa10190bcf9136280946e49d893262f7f8.zip | |
Fix qt build broken by 5a5e4e9
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) |