| 62 | typedef std::unordered_map<uint256, CBlockIndex*, BlockHasher> BlockMap; |
| 63 | |
| 64 | struct CBlockIndexWorkComparator { |
| 65 | bool operator()(const CBlockIndex* pa, const CBlockIndex* pb) const; |
| 66 | }; |
| 67 | |
| 68 | /** |
| 69 | * Maintains a tree of blocks (stored in `m_block_index`) which is consulted |
no outgoing calls
no test coverage detected