| 8 | #include <util/check.h> |
| 9 | |
| 10 | std::string CBlockIndex::ToString() const |
| 11 | { |
| 12 | return strprintf("CBlockIndex(pprev=%p, nHeight=%d, merkle=%s, hashBlock=%s)", |
| 13 | pprev, nHeight, hashMerkleRoot.ToString(), GetBlockHash().ToString()); |
| 14 | } |
| 15 | |
| 16 | void CChain::SetTip(CBlockIndex& block) |
| 17 | { |
no outgoing calls
no test coverage detected