MCPcopy Create free account
hub / github.com/bitcoin/bitcoin / AppendChunkFeerates

Method AppendChunkFeerates

src/txgraph.cpp:1384–1389  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1382}
1383
1384void 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
1391void SingletonClusterImpl::AppendChunkFeerates(std::vector<FeeFrac>& ret) const noexcept
1392{

Callers 1

Calls 7

ChunkLinearizationFunction · 0.85
reserveMethod · 0.45
sizeMethod · 0.45
insertMethod · 0.45
endMethod · 0.45
beginMethod · 0.45
push_backMethod · 0.45

Tested by

no test coverage detected