From fe61d5dce79cfc1a550664034894d334cb361474 Mon Sep 17 00:00:00 2001 From: Julian Meyer Date: Mon, 11 May 2026 12:50:05 -0700 Subject: [PATCH] feat: allow customizing v5 disc port --- reth/reth-entrypoint | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reth/reth-entrypoint b/reth/reth-entrypoint index 0ffebc83f..cea226016 100755 --- a/reth/reth-entrypoint +++ b/reth/reth-entrypoint @@ -8,6 +8,7 @@ WS_PORT="${WS_PORT:-8546}" AUTHRPC_PORT="${AUTHRPC_PORT:-8551}" METRICS_PORT="${METRICS_PORT:-6060}" DISCOVERY_PORT="${DISCOVERY_PORT:-30303}" +V5_DISCOVERY_PORT="${V5_DISCOVERY_PORT:-9200}" P2P_PORT="${P2P_PORT:-30303}" ADDITIONAL_ARGS="" BINARY="./base-reth-node" @@ -154,5 +155,6 @@ exec "$BINARY" node \ --rollup.sequencer-http="$RETH_SEQUENCER_HTTP" \ --rollup.disable-tx-pool-gossip \ --discovery.port="$DISCOVERY_PORT" \ + --discovery.v5.port="$V5_DISCOVERY_PORT" \ --port="$P2P_PORT" \ $ADDITIONAL_ARGS