mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-18 13:17:55 +02:00
Merge 94d6a18f23 into merged_master (Bitcoin PR #16507)
This commit is contained in:
commit
60dfbbddd8
6 changed files with 34 additions and 21 deletions
|
|
@ -850,7 +850,7 @@ void CTxMemPool::queryHashes(std::vector<uint256>& vtxid) const
|
|||
}
|
||||
|
||||
static TxMempoolInfo GetInfo(CTxMemPool::indexed_transaction_set::const_iterator it) {
|
||||
return TxMempoolInfo{it->GetSharedTx(), it->GetTime(), CFeeRate(it->GetFee(), it->GetTxSize()), it->GetModifiedFee() - it->GetFee()};
|
||||
return TxMempoolInfo{it->GetSharedTx(), it->GetTime(), it->GetFee(), it->GetTxSize(), it->GetModifiedFee() - it->GetFee()};
|
||||
}
|
||||
|
||||
std::vector<TxMempoolInfo> CTxMemPool::infoAll() const
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue