| 554 | |
| 555 | |
| 556 | std::string ToString() const |
| 557 | { |
| 558 | std::string str = "CDiskBlockIndex("; |
| 559 | str += CBlockIndex::ToString(); |
| 560 | str += strprintf("\n hashBlock=%s, hashPrev=%s)", |
| 561 | GetBlockHash().ToString(), |
| 562 | hashPrev.ToString()); |
| 563 | return str; |
| 564 | } |
| 565 | }; |
| 566 | |
| 567 | /** An in-memory indexed chain of blocks. */ |