(self)
| 72 | os.remove(filename) |
| 73 | |
| 74 | def test_default_asmap(self): |
| 75 | shutil.copyfile(self.asmap_raw, self.default_asmap) |
| 76 | for arg in ['-asmap', '-asmap=']: |
| 77 | self.log.info(f'Test bitcoind {arg} (using default map file)') |
| 78 | self.stop_node(0) |
| 79 | with self.node.assert_debug_log(expected_messages(self.default_asmap)): |
| 80 | self.start_node(0, [arg]) |
| 81 | os.remove(self.default_asmap) |
| 82 | |
| 83 | def test_asmap_interaction_with_addrman_containing_entries(self): |
| 84 | self.log.info("Test bitcoind -asmap restart with addrman containing new and tried entries") |
no test coverage detected