From cd1958c82a20ba6219fd8748c16dfc586ba785c7 Mon Sep 17 00:00:00 2001 From: Konstantin Akimov Date: Thu, 12 Sep 2024 17:43:21 +0700 Subject: [PATCH] perf: removed sleep(6) from mine_cycle_quorum in functional tests --- test/functional/test_framework/test_framework.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/functional/test_framework/test_framework.py b/test/functional/test_framework/test_framework.py index b24acff698..6811c7948a 100755 --- a/test/functional/test_framework/test_framework.py +++ b/test/functional/test_framework/test_framework.py @@ -1995,14 +1995,12 @@ class DashTestFramework(BitcoinTestFramework): self.log.info("quorumIndex 1: Waiting for phase 6 (finalization)") self.wait_for_quorum_phase(q_1, 6, expected_members, None, 0, mninfos_online, llmq_type_name) - time.sleep(6) self.log.info("Mining final commitments") self.bump_mocktime(1, nodes=nodes) self.nodes[0].getblocktemplate() # this calls CreateNewBlock self.nodes[0].generate(1) self.sync_blocks(nodes) - time.sleep(6) self.log.info("Waiting for quorum(s) to appear in the list") self.wait_for_quorums_list(q_0, q_1, nodes, llmq_type_name)