| 830 | } |
| 831 | |
| 832 | static TxMempoolInfo GetInfo(CTxMemPool::indexed_transaction_set::const_iterator it) { |
| 833 | return TxMempoolInfo{it->GetSharedTx(), it->GetTime(), CFeeRate(it->GetFee(), it->GetTxSize()), it->GetModifiedFee() - it->GetFee()}; |
| 834 | } |
| 835 | |
| 836 | std::vector<TxMempoolInfo> CTxMemPool::infoAll() const |
| 837 | { |
no test coverage detected