diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2014-12-25 11:43:52 +0000 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2018-09-13 11:48:23 +0000 |
commit | 92af71cea92f8a5185b44e63684b87da9d7ad8a8 (patch) | |
tree | 865d35e089d20374310c824ca96d7c3535d553bb /test/functional | |
parent | 288ddf4ff51cf47a40528207ba5d32775a2b9a6d (diff) |
configure: Make it possible to build only one of bitcoin-cli or bitcoin-tx
Diffstat (limited to 'test/functional')
-rwxr-xr-x | test/functional/test_framework/test_framework.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/test_framework/test_framework.py b/test/functional/test_framework/test_framework.py index 57c985b2a2..7d4e50c663 100755 --- a/test/functional/test_framework/test_framework.py +++ b/test/functional/test_framework/test_framework.py @@ -525,7 +525,7 @@ class BitcoinTestFramework(metaclass=BitcoinTestMetaClass): config = configparser.ConfigParser() config.read_file(open(self.options.configfile)) - return config["components"].getboolean("ENABLE_UTILS") + return config["components"].getboolean("ENABLE_CLI") def is_wallet_compiled(self): """Checks whether the wallet module was compiled.""" |