(self, expected_height)
| 92 | self.connect_nodes(0, self.num_nodes-1) |
| 93 | |
| 94 | def check_height(self, expected_height): |
| 95 | for n in self.nodes: |
| 96 | assert_equal(n.getblockcount(), expected_height) |
| 97 | |
| 98 | def mine_block(self, make_transactions): |
| 99 | # mine block in round robin sense: depending on the block number, a node |
no test coverage detected