| 67 | } |
| 68 | |
| 69 | uint256 CCoinsViewDB::GetBestBlock() const { |
| 70 | uint256 hashBestChain; |
| 71 | if (!db.Read(DB_BEST_BLOCK, hashBestChain)) |
| 72 | return uint256(); |
| 73 | return hashBestChain; |
| 74 | } |
| 75 | |
| 76 | std::vector<uint256> CCoinsViewDB::GetHeadBlocks() const { |
| 77 | std::vector<uint256> vhashHeadBlocks; |
no test coverage detected