From c95b7797a5f0d889fc1e63ddee16729df48bbf92 Mon Sep 17 00:00:00 2001 From: phrwlk Date: Mon, 10 Nov 2025 13:35:10 +0200 Subject: [PATCH] reth-entrypoint: set NODE_TYPE default to vanilla (OP Reth) --- reth/reth-entrypoint | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reth/reth-entrypoint b/reth/reth-entrypoint index 31e40e0f..250a7794 100755 --- a/reth/reth-entrypoint +++ b/reth/reth-entrypoint @@ -10,7 +10,7 @@ METRICS_PORT="${METRICS_PORT:-6060}" DISCOVERY_PORT="${DISCOVERY_PORT:-30303}" P2P_PORT="${P2P_PORT:-30303}" ADDITIONAL_ARGS="" -NODE_TYPE="${NODE_TYPE:-base}" +NODE_TYPE="${NODE_TYPE:-vanilla}" if [[ -z "${RETH_CHAIN:-}" ]]; then echo "expected RETH_CHAIN to be set" 1>&2