mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-05 14:06:27 -05:00
remove unused CTxMemPool::info(const uint256& txid)
This commit is contained in:
parent
c001da306b
commit
faeb9a5753
2 changed files with 0 additions and 3 deletions
|
@ -895,8 +895,6 @@ TxMempoolInfo CTxMemPool::info(const GenTxid& gtxid) const
|
||||||
return GetInfo(i);
|
return GetInfo(i);
|
||||||
}
|
}
|
||||||
|
|
||||||
TxMempoolInfo CTxMemPool::info(const uint256& txid) const { return info(GenTxid{false, txid}); }
|
|
||||||
|
|
||||||
void CTxMemPool::PrioritiseTransaction(const uint256& hash, const CAmount& nFeeDelta)
|
void CTxMemPool::PrioritiseTransaction(const uint256& hash, const CAmount& nFeeDelta)
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
|
|
|
@ -789,7 +789,6 @@ public:
|
||||||
AssertLockHeld(cs);
|
AssertLockHeld(cs);
|
||||||
return mapTx.project<0>(mapTx.get<index_by_wtxid>().find(wtxid));
|
return mapTx.project<0>(mapTx.get<index_by_wtxid>().find(wtxid));
|
||||||
}
|
}
|
||||||
TxMempoolInfo info(const uint256& hash) const;
|
|
||||||
TxMempoolInfo info(const GenTxid& gtxid) const;
|
TxMempoolInfo info(const GenTxid& gtxid) const;
|
||||||
std::vector<TxMempoolInfo> infoAll() const;
|
std::vector<TxMempoolInfo> infoAll() const;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue