aboutsummaryrefslogtreecommitdiff
path: root/src/wallet
diff options
context:
space:
mode:
authorMatt Corallo <git@bluematt.me>2016-12-04 18:53:26 -0800
committerMatt Corallo <git@bluematt.me>2017-01-09 14:15:18 -0500
commitedded808fc4eee94c178e1779b90d1c87a08c23a (patch)
treea12312fa8616361dca5ca877a4d8e580892c19bc /src/wallet
parentc73554042886fb63fb48edf29cf827951edde341 (diff)
downloadbitcoin-edded808fc4eee94c178e1779b90d1c87a08c23a.tar.xz
Make ATMP optionally return the CTransactionRefs it replaced
Diffstat (limited to 'src/wallet')
-rw-r--r--src/wallet/wallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp
index 2775f4def3..a199591ad1 100644
--- a/src/wallet/wallet.cpp
+++ b/src/wallet/wallet.cpp
@@ -3847,5 +3847,5 @@ int CMerkleTx::GetBlocksToMaturity() const
bool CMerkleTx::AcceptToMemoryPool(const CAmount& nAbsurdFee, CValidationState& state)
{
- return ::AcceptToMemoryPool(mempool, state, tx, true, NULL, false, nAbsurdFee);
+ return ::AcceptToMemoryPool(mempool, state, tx, true, NULL, NULL, false, nAbsurdFee);
}