From 3c80c5d12368e16546c3869eb1770ecd080f3042 Mon Sep 17 00:00:00 2001 From: yorickdowne <71337066+yorickdowne@users.noreply.github.com> Date: Fri, 20 Sep 2024 09:02:09 +0100 Subject: [PATCH] discv5 Geth is now enabled by default (#1933) --- geth/docker-entrypoint.sh | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/geth/docker-entrypoint.sh b/geth/docker-entrypoint.sh index d7410a4b..a16a09b6 100755 --- a/geth/docker-entrypoint.sh +++ b/geth/docker-entrypoint.sh @@ -99,13 +99,6 @@ else __prune="" fi -if [ "${IPV6}" = "true" ]; then - echo "Configuring Geth for discv5 for IPv6 advertisements" - __ipv6="--discv5" -else - __ipv6="" -fi - # Word splitting is desired for the command line parameters # shellcheck disable=SC2086 -exec "$@" ${__datadir} ${__ancient} ${__ipv6} ${__network} ${__prune} ${__verbosity} ${EL_EXTRAS} +exec "$@" ${__datadir} ${__ancient} ${__network} ${__prune} ${__verbosity} ${EL_EXTRAS}