| 1319 | } |
| 1320 | |
| 1321 | BlockChain::CheckpointDifficulty BlockChain::get_checkpoint_difficulty(Hash hash) const { |
| 1322 | auto bit = m_blods.find(hash); |
| 1323 | if (bit == m_blods.end()) |
| 1324 | return CheckpointDifficulty{}; |
| 1325 | return bit->second.checkpoint_difficulty; |
| 1326 | } |