aboutsummaryrefslogtreecommitdiff
path: root/src/txmempool.h
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2017-04-25 11:29:37 -0700
committerPieter Wuille <pieter.wuille@gmail.com>2017-06-01 12:43:16 -0700
commit13870b56fcd0bfacedce3ae42a3de3d5e9dc7bc1 (patch)
tree874be8e8f747c15d337df1f7b5b94875aac8fb68 /src/txmempool.h
parent05293f3cb75ad08ca23cba8e795e27d4d5e4d690 (diff)
downloadbitcoin-13870b56fcd0bfacedce3ae42a3de3d5e9dc7bc1.tar.xz
Replace CCoins-based CTxMemPool::pruneSpent with isSpent
Diffstat (limited to 'src/txmempool.h')
-rw-r--r--src/txmempool.h2
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);
/**