diff options
author | Martin Zumsande <mzumsande@gmail.com> | 2021-07-26 17:36:01 +0200 |
---|---|---|
committer | Martin Zumsande <mzumsande@gmail.com> | 2021-07-26 19:11:13 +0200 |
commit | 8ca51af1ece371b6f1bdb88b96f16020cc787d13 (patch) | |
tree | b52db0ed28869760191d6b2a25026295951137d0 /test/functional/feature_config_args.py | |
parent | 54e31742d208eb98ce706aaa6bbd4b023f42c3a5 (diff) |
test: Disable automatic connections by default
This prevents the node from trying to connect to random IPs on the internet
while running the functional tests. Exceptions are added when required for
the test to pass.
Diffstat (limited to 'test/functional/feature_config_args.py')
-rwxr-xr-x | test/functional/feature_config_args.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/feature_config_args.py b/test/functional/feature_config_args.py index de9d0d2e80..5a23df8a13 100755 --- a/test/functional/feature_config_args.py +++ b/test/functional/feature_config_args.py @@ -17,6 +17,7 @@ class ConfArgsTest(BitcoinTestFramework): self.num_nodes = 1 self.supports_cli = False self.wallet_names = [] + self.disable_autoconnect = False def test_config_file_parser(self): self.stop_node(0) |