From dcc6cdb0830f71bbb7feef98fbc1a24f9efbccf1 Mon Sep 17 00:00:00 2001 From: "Jonathan \"Duke\" Leto" Date: Tue, 7 Aug 2018 21:24:33 +0200 Subject: [PATCH] Remove reference to REGTEST.conf in start_node which all tests use, not just CC tests. it is passed via extra_args --- qa/rpc-tests/test_framework/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/rpc-tests/test_framework/util.py b/qa/rpc-tests/test_framework/util.py index 2e349794b..1080f32f1 100644 --- a/qa/rpc-tests/test_framework/util.py +++ b/qa/rpc-tests/test_framework/util.py @@ -209,7 +209,7 @@ def start_node(i, dirname, extra_args=None, rpchost=None, timewait=None, binary= cmd = os.getenv("BITCOINCLI", "komodo-cli") print("cmd=" + cmd) #TODO: this will only work on the regtest AC, and probably breaks non-CC tests - cmd_args = ' '.join(extra_args) + " -rpcwait -conf=" +datadir+"/REGTEST.conf getblockcount " + cmd_args = ' '.join(extra_args) + " -rpcwait getblockcount " if os.getenv("PYTHON_DEBUG", ""): print "start_node: komodod started, calling : " + cmd + " " + cmd_args strcmd = cmd + " " + cmd_args