diff options
| author | Matt Corallo <[email protected]> | 2016-12-04 18:53:26 -0800 |
|---|---|---|
| committer | Matt Corallo <[email protected]> | 2017-01-09 14:15:18 -0500 |
| commit | edded808fc4eee94c178e1779b90d1c87a08c23a (patch) | |
| tree | a12312fa8616361dca5ca877a4d8e580892c19bc /src/wallet/wallet.cpp | |
| parent | Move ORPHAN constants from validation.h to net_processing.h (diff) | |
| download | discoin-edded808fc4eee94c178e1779b90d1c87a08c23a.tar.xz discoin-edded808fc4eee94c178e1779b90d1c87a08c23a.zip | |
Make ATMP optionally return the CTransactionRefs it replaced
Diffstat (limited to 'src/wallet/wallet.cpp')
| -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 2775f4def..a199591ad 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); } |