mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 03:52:49 +01:00
Remove Dash specific leftovers of node.stop optimization
This commit is contained in:
parent
f55da3aa54
commit
cc124c99c7
@ -263,13 +263,13 @@ class BitcoinTestFramework(object):
|
||||
|
||||
return nodes
|
||||
|
||||
def stop_node(self, i, wait=True):
|
||||
def stop_node(self, i):
|
||||
"""Stop a dashd test node"""
|
||||
self.nodes[i].stop_node()
|
||||
while not self.nodes[i].is_node_stopped():
|
||||
time.sleep(0.1)
|
||||
|
||||
def stop_nodes(self, fast=True):
|
||||
def stop_nodes(self):
|
||||
"""Stop multiple dashd test nodes"""
|
||||
for node in self.nodes:
|
||||
# Issue RPC to stop nodes
|
||||
@ -301,11 +301,6 @@ class BitcoinTestFramework(object):
|
||||
assert_msg = "dashd should have exited with expected error " + expected_msg
|
||||
raise AssertionError(assert_msg)
|
||||
|
||||
def wait_node(self, i):
|
||||
return_code = self.bitcoind_processes[i].wait(timeout=BITCOIND_PROC_WAIT_TIMEOUT)
|
||||
del self.bitcoind_processes[i]
|
||||
assert_equal(return_code, 0)
|
||||
|
||||
def wait_for_node_exit(self, i, timeout):
|
||||
self.nodes[i].process.wait(timeout)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user