Fix append_config

This commit is contained in:
UdjinM6 2020-07-09 12:32:43 +03:00 committed by pasta
parent db5a10233d
commit 3a4a64b7c6

View File

@ -314,7 +314,7 @@ def get_datadir_path(dirname, n):
def append_config(dirname, n, options):
datadir = get_datadir_path(dirname, n)
with open(os.path.join(datadir, "bitcoin.conf"), 'a', encoding='utf8') as f:
with open(os.path.join(datadir, "dash.conf"), 'a', encoding='utf8') as f:
for option in options:
f.write(option + "\n")