| 1382 | } |
| 1383 | |
| 1384 | void GenericClusterImpl::AppendChunkFeerates(std::vector<FeeFrac>& ret) const noexcept |
| 1385 | { |
| 1386 | auto chunk_feerates = ChunkLinearization(m_depgraph, m_linearization); |
| 1387 | ret.reserve(ret.size() + chunk_feerates.size()); |
| 1388 | ret.insert(ret.end(), chunk_feerates.begin(), chunk_feerates.end()); |
| 1389 | } |
| 1390 | |
| 1391 | void SingletonClusterImpl::AppendChunkFeerates(std::vector<FeeFrac>& ret) const noexcept |
| 1392 | { |
no test coverage detected