aboutsummaryrefslogtreecommitdiff
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-22 16:45:56 +0100
commit453c56701a14d571b93edb4352f6dbfa258c3c44 (patch)
tree201666ab40b8790cbc5b8d63e8c10b377747e25d
parent9ef7c54ef0b2d9c1abe45f66ecaa917e1cd41cc9 (diff)
downloadbitcoin-453c56701a14d571b93edb4352f6dbfa258c3c44.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. Github-Pull: #7170 Rebased-From: 4c40ec0451a8f279f3e2e40af068c9451afd699e
-rw-r--r--qa/rpc-tests/test_framework/util.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/qa/rpc-tests/test_framework/util.py b/qa/rpc-tests/test_framework/util.py
index 80ee8ea16d..313d1b62b3 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):
@@ -453,4 +454,4 @@ def create_lots_of_big_transactions(node, txouts, utxos, fee):
signresult = node.signrawtransaction(newtx, None, None, "NONE")
txid = node.sendrawtransaction(signresult["hex"], True)
txids.append(txid)
- return txids \ No newline at end of file
+ return txids