Returns blocks forward of `block`. Only blocks that can be targeted by branches are considered.
(&self, block: Block)
| 1222 | |
| 1223 | /// Returns blocks forward of `block`. Only blocks that can be targeted by branches are considered. |
| 1224 | fn forward_blocks(&self, block: Block) -> &[(Block, BlockSignature)] { |
| 1225 | let (_, forward_blocks) = self.partition_target_blocks(block); |
| 1226 | forward_blocks |
| 1227 | } |
| 1228 | |
| 1229 | /// Generates a slice of `blocks_without_params` ahead of `block` |
| 1230 | fn forward_blocks_without_params(&self, block: Block) -> &[Block] { |
no test coverage detected