From 99f2f64564e986e853291a372a88d03c1af25d5f Mon Sep 17 00:00:00 2001 From: pasta Date: Tue, 21 Jul 2020 16:15:35 -0500 Subject: [PATCH] bitcoind/-cli to dashd/-cli Signed-off-by: pasta --- test/functional/test_framework/test_framework.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/functional/test_framework/test_framework.py b/test/functional/test_framework/test_framework.py index 2f469a858b..f5e8cc7087 100755 --- a/test/functional/test_framework/test_framework.py +++ b/test/functional/test_framework/test_framework.py @@ -133,8 +133,8 @@ class BitcoinTestFramework(): config = configparser.ConfigParser() config.read_file(open(self.options.configfile)) - self.options.bitcoind = os.getenv("BITCOIND", default=config["environment"]["BUILDDIR"] + '/src/bitcoind' + config["environment"]["EXEEXT"]) - self.options.bitcoincli = os.getenv("BITCOINCLI", default=config["environment"]["BUILDDIR"] + '/src/bitcoin-cli' + config["environment"]["EXEEXT"]) + self.options.bitcoind = os.getenv("BITCOIND", default=config["environment"]["BUILDDIR"] + '/src/dashd' + config["environment"]["EXEEXT"]) + self.options.bitcoincli = os.getenv("BITCOINCLI", default=config["environment"]["BUILDDIR"] + '/src/dash-cli' + config["environment"]["EXEEXT"]) self.extra_args_from_options = self.options.dashd_extra_args