diff options
author | Alex Morcos <morcos@chaincode.com> | 2017-06-27 14:10:03 -0400 |
---|---|---|
committer | Alex Morcos <morcos@chaincode.com> | 2017-06-27 14:10:03 -0400 |
commit | 22378adbe5c7c723c2fa91c162e37a2ae1f80fb3 (patch) | |
tree | 7b7b66bf665385e407ee189386d82f237dbe785b /src/txmempool.h | |
parent | ac52492cd22782d7b09c78c198fb6fd8eb1da57c (diff) |
Remove no longer used mempool.exists(outpoint)
Diffstat (limited to 'src/txmempool.h')
-rw-r--r-- | src/txmempool.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/txmempool.h b/src/txmempool.h index 78ac3c209b..be9e83eb4b 100644 --- a/src/txmempool.h +++ b/src/txmempool.h @@ -618,13 +618,6 @@ public: return (mapTx.count(hash) != 0); } - bool exists(const COutPoint& outpoint) const - { - LOCK(cs); - auto it = mapTx.find(outpoint.hash); - return (it != mapTx.end() && outpoint.n < it->GetTx().vout.size()); - } - CTransactionRef get(const uint256& hash) const; TxMempoolInfo info(const uint256& hash) const; std::vector<TxMempoolInfo> infoAll() const; |