| 4921 | } |
| 4922 | |
| 4923 | std::string CBlockFileInfo::ToString() const |
| 4924 | { |
| 4925 | return strprintf("CBlockFileInfo(blocks=%u, size=%u, heights=%u...%u, time=%s...%s)", nBlocks, nSize, nHeightFirst, nHeightLast, FormatISO8601Date(nTimeFirst), FormatISO8601Date(nTimeLast)); |
| 4926 | } |
| 4927 | |
| 4928 | CBlockFileInfo* GetBlockFileInfo(size_t n) |
| 4929 | { |
no test coverage detected