| 791 | } |
| 792 | |
| 793 | static TxMempoolInfo GetInfo(CTxMemPool::indexed_transaction_set::const_iterator it) { |
| 794 | return TxMempoolInfo{it->GetSharedTx(), it->GetTime(), CFeeRate(it->GetFee(), it->GetTxSize()), it->GetModifiedFee() - it->GetFee()}; |
| 795 | } |
| 796 | |
| 797 | std::vector<TxMempoolInfo> CTxMemPool::infoAll() const |
| 798 | { |
no test coverage detected