(self)
| 87 | ]] * self.num_nodes |
| 88 | |
| 89 | def setup_network(self): |
| 90 | self.setup_nodes() |
| 91 | # Connect non-signing node to a single signing one (to not pass blocks between signers) |
| 92 | self.connect_nodes(0, self.num_nodes-1) |
| 93 | |
| 94 | def check_height(self, expected_height): |
| 95 | for n in self.nodes: |
nothing calls this directly
no test coverage detected