diff options
| author | MarcoFalke <[email protected]> | 2016-07-06 20:46:22 +0200 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2016-07-07 10:28:42 +0200 |
| commit | fa9976b853dbd04334cd0b5a058b99aa0014e649 (patch) | |
| tree | 63cd4e4335538c17ff4cc837657d8b4f67fc8bff | |
| parent | Merge #8285: windows: Add testnet link to installer (diff) | |
| download | discoin-fa9976b853dbd04334cd0b5a058b99aa0014e649.tar.xz discoin-fa9976b853dbd04334cd0b5a058b99aa0014e649.zip | |
[qa] test_framework: Add wrapper for stop_node
| -rwxr-xr-x | qa/rpc-tests/test_framework/test_framework.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/qa/rpc-tests/test_framework/test_framework.py b/qa/rpc-tests/test_framework/test_framework.py index 30e8b5755..0dfece6b2 100755 --- a/qa/rpc-tests/test_framework/test_framework.py +++ b/qa/rpc-tests/test_framework/test_framework.py @@ -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) |