diff options
author | Matt Corallo <git@bluematt.me> | 2014-11-11 20:57:54 -0800 |
---|---|---|
committer | Matt Corallo <git@bluematt.me> | 2014-12-08 14:05:42 -0800 |
commit | 723d12c098456e7682e641076e76468a9fb0cec0 (patch) | |
tree | f50a3c3ee4baa4e0507dc1befda01ed03784d8af /src/txmempool.h | |
parent | 868d041622e2f589ab4535c30ce683534b6d4f71 (diff) |
Remove txn which are invalidated by coinbase maturity during reorg
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 d00bdd0616..f671352b58 100644 --- a/src/txmempool.h +++ b/src/txmempool.h @@ -113,6 +113,7 @@ public: bool addUnchecked(const uint256& hash, const CTxMemPoolEntry &entry); void remove(const CTransaction &tx, std::list<CTransaction>& removed, bool fRecursive = false); + void removeCoinbaseSpends(const CCoinsViewCache *pcoins, unsigned int nMemPoolHeight); void removeConflicts(const CTransaction &tx, std::list<CTransaction>& removed); void removeForBlock(const std::vector<CTransaction>& vtx, unsigned int nBlockHeight, std::list<CTransaction>& conflicts); |