From 446076d094e1ba49b4fbbfe2cff05383e8e0d929 Mon Sep 17 00:00:00 2001 From: Kittywhiskers Van Gogh <63189531+kwvg@users.noreply.github.com> Date: Sat, 23 Mar 2024 15:31:06 +0000 Subject: [PATCH] test: add missing `dnsseed=0` in configuration line added in https://github.com/bitcoin/bitcoin/pull/16551/commits/fa31dc1bf4ee471c4641eef8de02702ba0619ae7#diff-e20e1f68486e5c096fdc11bca1cda063aacef524411f011d9c3497eb650c5eafR301 --- test/functional/test_framework/util.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/functional/test_framework/util.py b/test/functional/test_framework/util.py index e009e0c7a6a12..955836a15ba50 100644 --- a/test/functional/test_framework/util.py +++ b/test/functional/test_framework/util.py @@ -370,6 +370,7 @@ def write_config(config_path, *, n, chain, extra_config=""): f.write("server=1\n") f.write("keypool=1\n") f.write("discover=0\n") + f.write("dnsseed=0\n") f.write("listenonion=0\n") f.write("printtoconsole=0\n") f.write("upnp=0\n")