From 6e0463de337cd720f9f27d684039bcc0bab2e218 Mon Sep 17 00:00:00 2001 From: Yorick Date: Tue, 30 Apr 2024 09:06:55 +0000 Subject: [PATCH] Add Grandine to metrics exporter start script --- eth-metrics/docker-entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eth-metrics/docker-entrypoint.sh b/eth-metrics/docker-entrypoint.sh index 566db17b..ff72785e 100755 --- a/eth-metrics/docker-entrypoint.sh +++ b/eth-metrics/docker-entrypoint.sh @@ -4,8 +4,8 @@ __consensus="" __execution="" case "$CLIENT" in - *lighthouse* | *prysm* | *nimbus* | *teku* | *lodestar* ) __consensus="--consensus-url=http://consensus:5052" ;;& - *geth* | *besu* | *nethermind* | *erigon* ) __execution="--execution-url=http://execution:8545" ;; + *lighthouse* | *prysm* | *nimbus* | *teku* | *lodestar* | *grandine* ) __consensus="--consensus-url=http://consensus:5052" ;;& + *geth* | *besu* | *nethermind* | *erigon* | *reth* ) __execution="--execution-url=http://execution:8545" ;; esac exec "$@" $__consensus $__execution