| 126 | } |
| 127 | |
| 128 | uint256 CBlockDBCache::GetBestBlockHash() const { |
| 129 | uint256 blockHash; |
| 130 | best_block_hash_cache.GetData(blockHash); |
| 131 | return blockHash; |
| 132 | } |
| 133 | |
| 134 | bool CBlockDBCache::SetBestBlock(const uint256 &blockHashIn) { |
| 135 | return best_block_hash_cache.SetData(blockHashIn); |
no test coverage detected