diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-10-27 08:42:24 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-10-27 08:48:12 +0100 |
commit | 38369dda325d704041e7eb43222cdd5c23daa7c3 (patch) | |
tree | 06e7c2f32145e6620c61f9a504436efbf99969b5 /src/txmempool.h | |
parent | 2b625510d37471d4eaf5f99c2311afbdcae448c2 (diff) | |
parent | 0d699fc821048ab9316b0004e6552c8f1dc5e5f4 (diff) |
Merge pull request #6889
0d699fc fix locking issue with new mempool limiting (Jonas Schnelli)
Diffstat (limited to 'src/txmempool.h')
-rw-r--r-- | src/txmempool.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/txmempool.h b/src/txmempool.h index d44995eefe..dedc7ba72c 100644 --- a/src/txmempool.h +++ b/src/txmempool.h @@ -375,6 +375,7 @@ public: void removeForBlock(const std::vector<CTransaction>& vtx, unsigned int nBlockHeight, std::list<CTransaction>& conflicts, bool fCurrentEstimate = true); void clear(); + void _clear(); //lock free void queryHashes(std::vector<uint256>& vtxid); void pruneSpent(const uint256& hash, CCoins &coins); unsigned int GetTransactionsUpdated() const; |