[qa] test_framework: Add wrapper for stop_node

This commit is contained in:
MarcoFalke 2016-07-06 20:46:22 +02:00 committed by Alexander Block
parent 64e1bfacdc
commit ff335e47fd

View File

@ -20,6 +20,7 @@ from .util import (
sync_blocks,
sync_mempools,
stop_nodes,
stop_node,
enable_coverage,
check_json_precision,
initialize_chain_clean,
@ -48,6 +49,9 @@ class BitcoinTestFramework(object):
else:
initialize_chain(self.options.tmpdir, self.num_nodes, self.options.cachedir)
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)