Merge 94d6a18f23 into merged_master (Bitcoin PR #16507)

This commit is contained in:
Andrew Poelstra 2020-11-09 21:20:34 +00:00
commit 60dfbbddd8
6 changed files with 34 additions and 21 deletions

View file

@ -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