(self)
| 19 | self.extra_args = [["-blocksonly"]] |
| 20 | |
| 21 | def run_test(self): |
| 22 | self.miniwallet = MiniWallet(self.nodes[0]) |
| 23 | # Add enough mature utxos to the wallet, so that all txs spend confirmed coins |
| 24 | self.miniwallet.rescan_utxos() |
| 25 | |
| 26 | self.blocksonly_mode_tests() |
| 27 | self.blocks_relay_conn_tests() |
| 28 | |
| 29 | def blocksonly_mode_tests(self): |
| 30 | self.log.info("Tests with node running in -blocksonly mode") |
nothing calls this directly
no test coverage detected