diff options
author | Sjors Provoost <sjors@sprovoost.nl> | 2018-01-16 15:46:57 +0000 |
---|---|---|
committer | Sjors Provoost <sjors@sprovoost.nl> | 2018-01-16 15:46:57 +0000 |
commit | 65682da7e57af544abb46a7d8a7f4fdca0c73f56 (patch) | |
tree | 958da68f22af1b6af2653873e01c131a1e8f5da1 /test/functional/test_framework/util.py | |
parent | cad504bf4c302f7a72e0a0e191f3fdbafda7340f (diff) |
[tests] bind functional test nodes to 127.0.0.1
Diffstat (limited to 'test/functional/test_framework/util.py')
-rw-r--r-- | test/functional/test_framework/util.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/test_framework/util.py b/test/functional/test_framework/util.py index 664dc6d0af..62c4e46af1 100644 --- a/test/functional/test_framework/util.py +++ b/test/functional/test_framework/util.py @@ -292,6 +292,7 @@ def initialize_datadir(dirname, n): f.write("port=" + str(p2p_port(n)) + "\n") f.write("rpcport=" + str(rpc_port(n)) + "\n") f.write("listenonion=0\n") + f.write("bind=127.0.0.1\n") return datadir def get_datadir_path(dirname, n): |