diff options
author | Matt Corallo <git@bluematt.me> | 2015-10-02 14:20:38 -0700 |
---|---|---|
committer | Matt Corallo <git@bluematt.me> | 2015-10-13 01:39:38 -0700 |
commit | d355cf4420043a866e418c97778d999cd1958f61 (patch) | |
tree | ffd7f4048f86201a3737bb04a795d1c5c60970b0 /src/wallet/wallet.cpp | |
parent | 794a8cec5db84fde1cce82ada51740070ec188ac (diff) |
Only call TrimToSize once per reorg/blocks disconnect
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 bd3004061b..3f2d5a05f6 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -2863,6 +2863,6 @@ int CMerkleTx::GetBlocksToMaturity() const bool CMerkleTx::AcceptToMemoryPool(bool fLimitFree, bool fRejectAbsurdFee) { CValidationState state; - return ::AcceptToMemoryPool(mempool, state, *this, fLimitFree, NULL, fRejectAbsurdFee); + return ::AcceptToMemoryPool(mempool, state, *this, fLimitFree, NULL, false, fRejectAbsurdFee); } |