| 942 | } |
| 943 | |
| 944 | DepGraphIndex GenericClusterImpl::AppendTransaction(GraphIndex graph_idx, FeePerWeight feerate) noexcept |
| 945 | { |
| 946 | Assume(graph_idx != GraphIndex(-1)); |
| 947 | auto ret = m_depgraph.AddTransaction(feerate); |
| 948 | m_mapping.push_back(graph_idx); |
| 949 | m_linearization.push_back(ret); |
| 950 | return ret; |
| 951 | } |
| 952 | |
| 953 | DepGraphIndex SingletonClusterImpl::AppendTransaction(GraphIndex graph_idx, FeePerWeight feerate) noexcept |
| 954 | { |
no test coverage detected