diff options
author | Matt Corallo <git@bluematt.me> | 2016-12-04 18:53:26 -0800 |
---|---|---|
committer | Matt Corallo <git@bluematt.me> | 2017-01-09 14:15:18 -0500 |
commit | edded808fc4eee94c178e1779b90d1c87a08c23a (patch) | |
tree | a12312fa8616361dca5ca877a4d8e580892c19bc /src/wallet | |
parent | c73554042886fb63fb48edf29cf827951edde341 (diff) |
Make ATMP optionally return the CTransactionRefs it replaced
Diffstat (limited to 'src/wallet')
-rw-r--r-- | src/wallet/wallet.cpp | 2 |
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); } |