configure: Make it possible to build only one of bitcoin-cli or bitcoin-tx

This commit is contained in:
Luke Dashjr 2014-12-25 11:43:52 +00:00
parent 288ddf4ff5
commit 92af71cea9
5 changed files with 37 additions and 14 deletions
test/functional/test_framework

View file

@ -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."""