aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_framework/util.py
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2018-02-15 14:01:43 -0500
committerMarcoFalke <falke.marco@gmail.com>2018-02-15 14:00:28 -0500
commitface7220b776e3decf9889b2c20c9d5f935e971e (patch)
tree9f99a410b351a2368727f4f963e509f77d0c70d7 /test/functional/test_framework/util.py
parentd09968f4d00668b990ae19aed024ff3fd27072b8 (diff)
downloadbitcoin-face7220b776e3decf9889b2c20c9d5f935e971e.tar.xz
qa: Move common args to bitcoin.conf
Diffstat (limited to 'test/functional/test_framework/util.py')
-rw-r--r--test/functional/test_framework/util.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/functional/test_framework/util.py b/test/functional/test_framework/util.py
index 8bf75ca1ae..fb67e1530f 100644
--- a/test/functional/test_framework/util.py
+++ b/test/functional/test_framework/util.py
@@ -291,6 +291,9 @@ def initialize_datadir(dirname, n):
f.write("regtest=1\n")
f.write("port=" + str(p2p_port(n)) + "\n")
f.write("rpcport=" + str(rpc_port(n)) + "\n")
+ f.write("server=1\n")
+ f.write("keypool=1\n")
+ f.write("discover=0\n")
f.write("listenonion=0\n")
f.write("bind=127.0.0.1\n")
return datadir