Ensure that node restarts successfully after various interrupts.
()
| 43 | node.process.wait() |
| 44 | |
| 45 | def check_clean_start(): |
| 46 | """Ensure that node restarts successfully after various interrupts.""" |
| 47 | node.start() |
| 48 | node.wait_for_rpc_connection() |
| 49 | assert_equal(200, node.getblockcount()) |
| 50 | |
| 51 | lines_to_terminate_after = [ |
| 52 | 'Validating signatures for all blocks', |
nothing calls this directly
no test coverage detected