diff options
| author | Luke Dashjr <[email protected]> | 2014-12-25 11:43:52 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2018-09-13 11:48:23 +0000 |
| commit | 92af71cea92f8a5185b44e63684b87da9d7ad8a8 (patch) | |
| tree | 865d35e089d20374310c824ca96d7c3535d553bb /test/functional/test_framework | |
| parent | Merge #14180: qa: Run all tests even if wallet is not compiled (diff) | |
| download | discoin-92af71cea92f8a5185b44e63684b87da9d7ad8a8.tar.xz discoin-92af71cea92f8a5185b44e63684b87da9d7ad8a8.zip | |
configure: Make it possible to build only one of bitcoin-cli or bitcoin-tx
Diffstat (limited to 'test/functional/test_framework')
| -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 57c985b2a..7d4e50c66 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.""" |