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: 4c40ec0451
This commit is contained in:
Wladimir J. van der Laan 2015-12-04 13:24:12 +01:00
parent 9ef7c54ef0
commit 453c56701a
No known key found for this signature in database
GPG key ID: 74810B012346C9A6

View file

@ -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
return txids