| 103 | } |
| 104 | |
| 105 | uint256 CCoinsViewDB::GetBestBlock() const { |
| 106 | uint256 hashBestChain; |
| 107 | if (!m_db->Read(DB_BEST_BLOCK, hashBestChain)) |
| 108 | return uint256(); |
| 109 | return hashBestChain; |
| 110 | } |
| 111 | |
| 112 | std::vector<uint256> CCoinsViewDB::GetHeadBlocks() const { |
| 113 | std::vector<uint256> vhashHeadBlocks; |
no test coverage detected