diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-02-15 14:01:43 -0500 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-02-15 14:00:28 -0500 |
commit | face7220b776e3decf9889b2c20c9d5f935e971e (patch) | |
tree | 9f99a410b351a2368727f4f963e509f77d0c70d7 /test/functional/test_framework/util.py | |
parent | d09968f4d00668b990ae19aed024ff3fd27072b8 (diff) |
qa: Move common args to bitcoin.conf
Diffstat (limited to 'test/functional/test_framework/util.py')
-rw-r--r-- | test/functional/test_framework/util.py | 3 |
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 |