(self, node_groups=None)
| 317 | self.sync_all() |
| 318 | |
| 319 | def sync_all(self, node_groups=None): |
| 320 | if not node_groups: |
| 321 | node_groups = [self.nodes] |
| 322 | |
| 323 | for group in node_groups: |
| 324 | sync_blocks(group) |
| 325 | sync_mempools(group) |
| 326 | |
| 327 | def enable_mocktime(self): |
| 328 | """Enable mocktime for the script. |
no test coverage detected