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

Method GetTotalTxSize

src/txgraph.cpp:935–942  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

933}
934
935uint64_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
944DepGraphIndex GenericClusterImpl::AppendTransaction(GraphIndex graph_idx, FeePerWeight feerate) noexcept
945{

Callers 3

GroupClustersMethod · 0.45
SanityCheckMethod · 0.45
MempoolInfoToJSONFunction · 0.45

Calls 1

FeeRateMethod · 0.80

Tested by

no test coverage detected