We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c001da3 commit faeb9a5Copy full SHA for faeb9a5
src/txmempool.cpp
@@ -895,8 +895,6 @@ TxMempoolInfo CTxMemPool::info(const GenTxid& gtxid) const
895
return GetInfo(i);
896
}
897
898
-TxMempoolInfo CTxMemPool::info(const uint256& txid) const { return info(GenTxid{false, txid}); }
899
-
900
void CTxMemPool::PrioritiseTransaction(const uint256& hash, const CAmount& nFeeDelta)
901
{
902
src/txmempool.h
@@ -789,7 +789,6 @@ class CTxMemPool
789
AssertLockHeld(cs);
790
return mapTx.project<0>(mapTx.get<index_by_wtxid>().find(wtxid));
791
792
- TxMempoolInfo info(const uint256& hash) const;
793
TxMempoolInfo info(const GenTxid& gtxid) const;
794
std::vector<TxMempoolInfo> infoAll() const;
795
0 commit comments