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

Method getTotalBytesSent

src/node/interfaces.cpp:297–297  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

295 }
296 int64_t getTotalBytesRecv() override { return m_context->connman ? m_context->connman->GetTotalBytesRecv() : 0; }
297 int64_t getTotalBytesSent() override { return m_context->connman ? m_context->connman->GetTotalBytesSent() : 0; }
298 size_t getMempoolSize() override { return m_context->mempool ? m_context->mempool->size() : 0; }
299 size_t getMempoolDynamicUsage() override { return m_context->mempool ? m_context->mempool->DynamicMemoryUsage() : 0; }
300 size_t getMempoolMaxUsage() override { return m_context->mempool ? m_context->mempool->m_opts.max_size_bytes : 0; }

Callers 5

ClientModelMethod · 0.80
setClientModelMethod · 0.80
updateRatesMethod · 0.80
clearMethod · 0.80
setClientModelMethod · 0.80

Calls 1

GetTotalBytesSentMethod · 0.80

Tested by

no test coverage detected