| 12 | node::NodeContext *CBlockIndex::m_pcontext; |
| 13 | |
| 14 | std::string CBlockFileInfo::ToString() const |
| 15 | { |
| 16 | return strprintf("CBlockFileInfo(blocks=%u, size=%u, heights=%u...%u, time=%s...%s)", nBlocks, nSize, nHeightFirst, nHeightLast, FormatISO8601Date(nTimeFirst), FormatISO8601Date(nTimeLast)); |
| 17 | } |
| 18 | |
| 19 | void CChain::SetTip(CBlockIndex *pindex) { |
| 20 | if (pindex == nullptr) { |
no outgoing calls
no test coverage detected