Skip to content

Commit

Permalink
tests: Disable Tor interaction
Browse files Browse the repository at this point in the history
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: 4c40ec0
  • Loading branch information
laanwj committed Dec 22, 2015
1 parent 9ef7c54 commit 453c567
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion qa/rpc-tests/test_framework/util.py
Expand Up @@ -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):
Expand Down Expand Up @@ -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

0 comments on commit 453c567

Please sign in to comment.