diff options
author | MarcoFalke <falke.marco@gmail.com> | 2016-10-01 21:07:31 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2016-10-02 11:16:44 +0200 |
commit | fa7c35c4ec630838178b4674288da33561a66f08 (patch) | |
tree | faf4539ae38778a4d6ca5bc2d39efb8685d1e653 /qa/rpc-tests/p2p-versionbits-warning.py | |
parent | 6faffb8a83db3f209a303a4464dbdd597faad5a4 (diff) |
[qa] util: Move wait_bitcoinds() into stop_nodes()
Diffstat (limited to 'qa/rpc-tests/p2p-versionbits-warning.py')
-rwxr-xr-x | qa/rpc-tests/p2p-versionbits-warning.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/qa/rpc-tests/p2p-versionbits-warning.py b/qa/rpc-tests/p2p-versionbits-warning.py index cceaa37b3d..fc3eddddee 100755 --- a/qa/rpc-tests/p2p-versionbits-warning.py +++ b/qa/rpc-tests/p2p-versionbits-warning.py @@ -144,8 +144,7 @@ class VersionBitsWarningTest(BitcoinTestFramework): # is cleared, and restart the node. This should move the versionbit state # to ACTIVE. self.nodes[0].generate(VB_PERIOD) - stop_node(self.nodes[0], 0) - wait_bitcoinds() + stop_nodes(self.nodes) # Empty out the alert file with open(self.alert_filename, 'w', encoding='utf8') as _: pass @@ -156,8 +155,7 @@ class VersionBitsWarningTest(BitcoinTestFramework): assert(WARN_UNKNOWN_RULES_ACTIVE in self.nodes[0].getinfo()["errors"]) assert(WARN_UNKNOWN_RULES_ACTIVE in self.nodes[0].getmininginfo()["errors"]) assert(WARN_UNKNOWN_RULES_ACTIVE in self.nodes[0].getnetworkinfo()["warnings"]) - stop_node(self.nodes[0], 0) - wait_bitcoinds() + stop_nodes(self.nodes) self.test_versionbits_in_alert_file() # Test framework expects the node to still be running... |