(self, timeout=BITCOIND_PROC_WAIT_TIMEOUT)
| 244 | return True |
| 245 | |
| 246 | def wait_until_stopped(self, timeout=BITCOIND_PROC_WAIT_TIMEOUT): |
| 247 | wait_until(self.is_node_stopped, timeout=timeout) |
| 248 | |
| 249 | @contextlib.contextmanager |
| 250 | def assert_debug_log(self, expected_msgs): |
no test coverage detected