diff --git a/src/txmempool.cpp b/src/txmempool.cpp index b945659c0d1..70084ea1d1d 100644 --- a/src/txmempool.cpp +++ b/src/txmempool.cpp @@ -895,8 +895,6 @@ TxMempoolInfo CTxMemPool::info(const GenTxid& gtxid) const return GetInfo(i); } -TxMempoolInfo CTxMemPool::info(const uint256& txid) const { return info(GenTxid{false, txid}); } - void CTxMemPool::PrioritiseTransaction(const uint256& hash, const CAmount& nFeeDelta) { { diff --git a/src/txmempool.h b/src/txmempool.h index 1fd0c70891f..c63522225a8 100644 --- a/src/txmempool.h +++ b/src/txmempool.h @@ -789,7 +789,6 @@ public: AssertLockHeld(cs); return mapTx.project<0>(mapTx.get().find(wtxid)); } - TxMempoolInfo info(const uint256& hash) const; TxMempoolInfo info(const GenTxid& gtxid) const; std::vector infoAll() const;