aboutsummaryrefslogtreecommitdiff
path: root/src/txmempool.h
diff options
context:
space:
mode:
authorMatt Corallo <git@bluematt.me>2014-11-11 20:57:54 -0800
committerMatt Corallo <git@bluematt.me>2014-12-08 14:05:42 -0800
commit723d12c098456e7682e641076e76468a9fb0cec0 (patch)
treef50a3c3ee4baa4e0507dc1befda01ed03784d8af /src/txmempool.h
parent868d041622e2f589ab4535c30ce683534b6d4f71 (diff)
downloadbitcoin-723d12c098456e7682e641076e76468a9fb0cec0.tar.xz
Remove txn which are invalidated by coinbase maturity during reorg
Diffstat (limited to 'src/txmempool.h')
-rw-r--r--src/txmempool.h1
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);