Browse Source

Remove no longer used mempool.exists(outpoint)

0.15
Alex Morcos 7 years ago
parent
commit
22378adbe5
  1. 7
      src/txmempool.h

7
src/txmempool.h

@ -618,13 +618,6 @@ public: @@ -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;

Loading…
Cancel
Save