We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26dd3bf commit 767a5ebCopy full SHA for 767a5eb
lighthouse/docker-entrypoint.sh
@@ -88,14 +88,6 @@ fi
88
if [ "${IPV6}" = "true" ]; then
89
echo "Configuring Lighthouse to listen on IPv6 ports"
90
__ipv6="--listen-address :: --port6 ${CL_P2P_PORT:-9000} --enr-udp6-port ${CL_P2P_PORT:-9000} --quic-port6 ${CL_QUIC_PORT:-9001}"
91
-# ENR discovery on v6 is not yet working, likely too few peers. Manual for now
92
- __ipv6_pattern="^[0-9A-Fa-f]{1,4}:" # Sufficient to check the start
93
- set +e
94
- __public_v6=$(curl -6 -s ifconfig.me)
95
- set -e
96
- if [[ "$__public_v6" =~ $__ipv6_pattern ]]; then
97
- __ipv6+=" --enr-address ${__public_v6}"
98
- fi
99
else
100
__ipv6=""
101
fi
0 commit comments