From faeb9a575367119dbff60c35fa2c13547718e179 Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Fri, 22 Oct 2021 12:15:15 +0200 Subject: [PATCH] remove unused CTxMemPool::info(const uint256& txid) --- src/txmempool.cpp | 2 -- src/txmempool.h | 1 - 2 files changed, 3 deletions(-) diff --git a/src/txmempool.cpp b/src/txmempool.cpp index b945659c0d..70084ea1d1 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 1fd0c70891..c63522225a 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;