[qa] test_framework: Add wrapper for stop_node
This commit is contained in:
parent
da50997a3e
commit
fa9976b853
1 changed files with 4 additions and 0 deletions
|
@ -20,6 +20,7 @@ from .util import (
|
|||
sync_blocks,
|
||||
sync_mempools,
|
||||
stop_nodes,
|
||||
stop_node,
|
||||
wait_bitcoinds,
|
||||
enable_coverage,
|
||||
check_json_precision,
|
||||
|
@ -49,6 +50,9 @@ class BitcoinTestFramework(object):
|
|||
else:
|
||||
initialize_chain(self.options.tmpdir, self.num_nodes)
|
||||
|
||||
def stop_node(self, num_node):
|
||||
stop_node(self.nodes[num_node], num_node)
|
||||
|
||||
def setup_nodes(self):
|
||||
return start_nodes(self.num_nodes, self.options.tmpdir)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue