aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_framework/util.py
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2020-06-16 07:39:18 -0400
committerMarcoFalke <falke.marco@gmail.com>2020-06-16 08:27:57 -0400
commitfaa841bc979ca306f5ba4d5f7b78fcc427b8e413 (patch)
treee3fbfeadec7eed9b5070ecdea2759120cb4a9d54 /test/functional/test_framework/util.py
parent0afbeb73ccb7523794e1e4a3422607c4423d1048 (diff)
downloadbitcoin-faa841bc979ca306f5ba4d5f7b78fcc427b8e413.tar.xz
test: refactor: Inline adjust_bitcoin_conf_for_pre_17
Diffstat (limited to 'test/functional/test_framework/util.py')
-rw-r--r--test/functional/test_framework/util.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/functional/test_framework/util.py b/test/functional/test_framework/util.py
index 52306c8c3d..f1e8cc95c8 100644
--- a/test/functional/test_framework/util.py
+++ b/test/functional/test_framework/util.py
@@ -327,12 +327,6 @@ def initialize_datadir(dirname, n, chain):
os.makedirs(os.path.join(datadir, 'stdout'), exist_ok=True)
return datadir
-def adjust_bitcoin_conf_for_pre_17(conf_file):
- with open(conf_file,'r', encoding='utf8') as conf:
- conf_data = conf.read()
- with open(conf_file, 'w', encoding='utf8') as conf:
- conf_data_changed = conf_data.replace('[regtest]', '')
- conf.write(conf_data_changed)
def get_datadir_path(dirname, n):
return os.path.join(dirname, "node" + str(n))