| 984 | } |
| 985 | |
| 986 | static TxMempoolInfo GetInfo(CTxMemPool::indexed_transaction_set::const_iterator it) { |
| 987 | return TxMempoolInfo{it->GetSharedTx(), it->GetTime(), it->GetFee(), it->GetTxSize(), it->GetModifiedFee() - it->GetFee(), it->GetDiscountTxSize()}; |
| 988 | } |
| 989 | |
| 990 | std::vector<TxMempoolInfo> CTxMemPool::infoAll() const |
| 991 | { |
no test coverage detected