From a1f4853d64ca09685be13a365d92e83d5dd68c56 Mon Sep 17 00:00:00 2001 From: Alexander Block Date: Wed, 21 Nov 2018 17:17:20 +0100 Subject: [PATCH] Use LLMQ DKGs for PoSe testing in DIP3 tests --- qa/rpc-tests/dip3-deterministicmns.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/qa/rpc-tests/dip3-deterministicmns.py b/qa/rpc-tests/dip3-deterministicmns.py index f499cbb82bb2f..f116d3e40f251 100755 --- a/qa/rpc-tests/dip3-deterministicmns.py +++ b/qa/rpc-tests/dip3-deterministicmns.py @@ -213,11 +213,12 @@ def run_test(self): banned = False t = time.time() while (not punished or not banned) and (time.time() - t) < 120: - time.sleep(1) + # Init phase needs some time + time.sleep(0.5) - # 10 blocks until we can mine the dummy commitment - for j in range(10): - self.nodes[0].generate(1) + # all phases + for j in range(6): + self.nodes[0].generate(2) self.sync_all() time.sleep(0.5)