From 56d846ae283d85a0ef462bc157ab42ecb61832f4 Mon Sep 17 00:00:00 2001 From: Yorick Date: Sat, 10 Aug 2024 20:18:30 +0000 Subject: [PATCH] Caplin announce MEV and Checkpoint --- erigon/docker-entrypoint.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/erigon/docker-entrypoint.sh b/erigon/docker-entrypoint.sh index cb294ad4..35cc44ff 100755 --- a/erigon/docker-entrypoint.sh +++ b/erigon/docker-entrypoint.sh @@ -77,12 +77,14 @@ if [[ "${DOCKER_TAG}" =~ "v3" || "${DOCKER_TAG}" = "latest" ]]; then __caplin+=" --beacon.api.addr=0.0.0.0 --beacon.api.port=${CL_REST_PORT} --beacon.api.cors.allow-origins=*" if [ "${MEV_BOOST}" = "true" ]; then __caplin+=" --caplin.mev-relay-url=${MEV_NODE}" + echo "MEV Boost enabled" fi if [ "${ARCHIVE_NODE}" = "true" ]; then __caplin+=" --caplin.archive=true" fi if [ -n "${RAPID_SYNC_URL}" ]; then __caplin+=" --caplin.checkpoint-sync-url=${RAPID_SYNC_URL}" + echo "Checkpoint sync enabled" else __caplin+=" --caplin.checkpoint-sync.disable=true" fi