| 933 | } |
| 934 | |
| 935 | uint64_t GenericClusterImpl::GetTotalTxSize() const noexcept |
| 936 | { |
| 937 | uint64_t ret{0}; |
| 938 | for (auto i : m_linearization) { |
| 939 | ret += m_depgraph.FeeRate(i).size; |
| 940 | } |
| 941 | return ret; |
| 942 | } |
| 943 | |
| 944 | DepGraphIndex GenericClusterImpl::AppendTransaction(GraphIndex graph_idx, FeePerWeight feerate) noexcept |
| 945 | { |
no test coverage detected