diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2017-04-25 11:29:37 -0700 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2017-06-01 12:43:16 -0700 |
commit | 13870b56fcd0bfacedce3ae42a3de3d5e9dc7bc1 (patch) | |
tree | 874be8e8f747c15d337df1f7b5b94875aac8fb68 /src/txmempool.h | |
parent | 05293f3cb75ad08ca23cba8e795e27d4d5e4d690 (diff) |
Replace CCoins-based CTxMemPool::pruneSpent with isSpent
Diffstat (limited to 'src/txmempool.h')
-rw-r--r-- | src/txmempool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/txmempool.h b/src/txmempool.h index a91eb5be54..6547f64f74 100644 --- a/src/txmempool.h +++ b/src/txmempool.h @@ -509,7 +509,7 @@ public: void _clear(); //lock free bool CompareDepthAndScore(const uint256& hasha, const uint256& hashb); void queryHashes(std::vector<uint256>& vtxid); - void pruneSpent(const uint256& hash, CCoins &coins); + bool isSpent(const COutPoint& outpoint); unsigned int GetTransactionsUpdated() const; void AddTransactionsUpdated(unsigned int n); /** |