| 5143 | } |
| 5144 | |
| 5145 | bool ChainstateManager::ShouldCheckBlockIndex() const |
| 5146 | { |
| 5147 | // Assert to verify Flatten() has been called. |
| 5148 | if (!*Assert(m_options.check_block_index)) return false; |
| 5149 | if (FastRandomContext().randrange(*m_options.check_block_index) >= 1) return false; |
| 5150 | return true; |
| 5151 | } |
| 5152 | |
| 5153 | void ChainstateManager::CheckBlockIndex() const |
| 5154 | { |
nothing calls this directly
no test coverage detected