aboutsummaryrefslogtreecommitdiff
path: root/qa
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2015-12-04 13:24:12 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2015-12-04 13:24:12 +0100
commit4c40ec0451a8f279f3e2e40af068c9451afd699e (patch)
treee82ac4cb38039b3d3f81c2520cb52d35ba09b56c /qa
parent792259278e4f2e43d7e09f89335ed80979449b1d (diff)
downloadbitcoin-4c40ec0451a8f279f3e2e40af068c9451afd699e.tar.xz
tests: Disable Tor interaction
This is unnecessary during the current tests (any test for Tor interaction can explicitly enable it) and interferes with the proxy test.
Diffstat (limited to 'qa')
-rw-r--r--qa/rpc-tests/test_framework/util.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/qa/rpc-tests/test_framework/util.py b/qa/rpc-tests/test_framework/util.py
index b7e90a8a8b..72df3ae685 100644
--- a/qa/rpc-tests/test_framework/util.py
+++ b/qa/rpc-tests/test_framework/util.py
@@ -107,6 +107,7 @@ def initialize_datadir(dirname, n):
f.write("rpcpassword=rt\n");
f.write("port="+str(p2p_port(n))+"\n");
f.write("rpcport="+str(rpc_port(n))+"\n");
+ f.write("listenonion=0\n");
return datadir
def initialize_chain(test_dir):