bitcoind/-cli to dashd/-cli

Signed-off-by: pasta <pasta@dashboost.org>
This commit is contained in:
pasta 2020-07-21 16:15:35 -05:00
parent 8adbc386a5
commit 99f2f64564
No known key found for this signature in database
GPG Key ID: 52527BEDABE87984

View File

@ -133,8 +133,8 @@ class BitcoinTestFramework():
config = configparser.ConfigParser() config = configparser.ConfigParser()
config.read_file(open(self.options.configfile)) config.read_file(open(self.options.configfile))
self.options.bitcoind = os.getenv("BITCOIND", default=config["environment"]["BUILDDIR"] + '/src/bitcoind' + 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/bitcoin-cli' + 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 self.extra_args_from_options = self.options.dashd_extra_args