From 08d915dc2d391e463573f6ced00d632ff978b2c2 Mon Sep 17 00:00:00 2001 From: Alexander Block Date: Fri, 25 Jan 2019 07:28:15 +0100 Subject: [PATCH] Increase waiting time in LLMQ signing tests --- qa/rpc-tests/llmq-signing.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qa/rpc-tests/llmq-signing.py b/qa/rpc-tests/llmq-signing.py index 021685b4b9a8d..3956ea5ca4e96 100755 --- a/qa/rpc-tests/llmq-signing.py +++ b/qa/rpc-tests/llmq-signing.py @@ -42,12 +42,12 @@ def assert_sigs(hasrecsigs, isconflicting1, isconflicting2): # Sign 5 shares, should not result in recovered sig for i in range(5): self.mninfo[i].node.quorum("sign", 100, id, msgHash) - sleep(2) + sleep(4) assert_sigs(False, False, False) # Sign one more share, should result in recovered sig and conflict for msgHashConflict self.mninfo[6].node.quorum("sign", 100, id, msgHash) - sleep(2) + sleep(4) assert_sigs(True, False, True) # Mine one more quorum, so that we have 2 active ones, nothing should change @@ -74,7 +74,7 @@ def assert_sigs(hasrecsigs, isconflicting1, isconflicting2): self.mninfo[i].node.quorum("sign", 100, id, msgHashConflict) for i in range(4, 10): self.mninfo[i].node.quorum("sign", 100, id, msgHash) - sleep(2) + sleep(4) assert_sigs(True, False, True) if __name__ == '__main__':