Determine whether the given lowered-block index is cold.
(&self, block: BlockIndex)
| 332 | |
| 333 | /// Determine whether the given lowered-block index is cold. |
| 334 | pub fn is_cold(&self, block: BlockIndex) -> bool { |
| 335 | self.cold_blocks.contains(&block) |
| 336 | } |
| 337 | |
| 338 | /// Determine whether the given lowered block index is an indirect branch |
| 339 | /// target. |