From 8d454fb58e459b28f296ab46c8b0e4e7ea07a096 Mon Sep 17 00:00:00 2001 From: "Jonathan \"Duke\" Leto" Date: Tue, 7 Aug 2018 21:32:56 +0200 Subject: [PATCH] Sleep a bit to give time for regtest komodod to start --- qa/rpc-tests/test_framework/util.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qa/rpc-tests/test_framework/util.py b/qa/rpc-tests/test_framework/util.py index 1080f32f1..2c63a9b23 100644 --- a/qa/rpc-tests/test_framework/util.py +++ b/qa/rpc-tests/test_framework/util.py @@ -215,6 +215,8 @@ def start_node(i, dirname, extra_args=None, rpchost=None, timewait=None, binary= strcmd = cmd + " " + cmd_args print("Running " + strcmd) + import time + time.sleep(2) subprocess.check_call(strcmd, shell=True); #subprocess.check_call([ os.getenv("BITCOINCLI", "komodo-cli"), "-datadir="+datadir] + # _rpchost_to_args(rpchost) +