(self, timeout=60)
| 323 | # Connection helper methods |
| 324 | |
| 325 | def wait_for_disconnect(self, timeout=60): |
| 326 | test_function = lambda: not self.is_connected |
| 327 | wait_until(test_function, timeout=timeout, lock=mininode_lock) |
| 328 | |
| 329 | # Message receiving helper methods |
| 330 |