(&self)
| 121 | } |
| 122 | |
| 123 | pub fn cached_blocks(&self) -> Stm<BlockHeight> { |
| 124 | self.perform_or_else(|p| p.cached_blocks(), BlockHeight::MAX) |
| 125 | } |
| 126 | |
| 127 | pub fn first_non_null_block(&self, height: BlockHeight) -> Stm<Option<BlockHeight>> { |
| 128 | self.perform_or_else(|p| p.first_non_null_block(height), None) |
nothing calls this directly
no test coverage detected