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