We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
start_masternodes
1 parent be72ef5 commit 1e17b74Copy full SHA for 1e17b74
test/functional/test_framework/test_framework.py
@@ -1446,17 +1446,12 @@ def do_connect(idx):
1446
job.result()
1447
jobs.clear()
1448
1449
- # connect nodes in parallel
1450
- for idx in range(0, self.mn_count):
1451
- jobs.append(executor.submit(do_connect, idx))
1452
-
1453
- # wait for all nodes to connect
1454
- for job in jobs:
1455
- job.result()
1456
- jobs.clear()
1457
1458
executor.shutdown()
1459
+ # connect nodes
+ for idx in range(0, self.mn_count):
+ do_connect(idx)
+
1460
def start_masternode(self, mninfo, extra_args=None):
1461
args = ['-masternodeblsprivkey=%s' % mninfo.keyOperator] + self.extra_args[mninfo.nodeIdx]
1462
if extra_args is not None:
0 commit comments