From a0ce106864be4b041257aacc0d083be155497196 Mon Sep 17 00:00:00 2001 From: cody-wang-cb Date: Tue, 18 Feb 2025 15:14:44 -0500 Subject: [PATCH] Update nodes version for pectra readiness (#415) * update nodes version for pectra readiness * fix version --- nethermind/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nethermind/Dockerfile b/nethermind/Dockerfile index 8e72bf17..e928889f 100644 --- a/nethermind/Dockerfile +++ b/nethermind/Dockerfile @@ -3,8 +3,8 @@ FROM golang:1.22 AS op WORKDIR /app ENV REPO=https://github.com/ethereum-optimism/optimism.git -ENV VERSION=v1.10.2 -ENV COMMIT=8bf7ff60f34a7c5082cec5c56bed1f76cc1893ad +ENV VERSION=v1.11.0 +ENV COMMIT=70fa4491f45b3d5d493394da2a154e3f22b61a5a RUN git clone $REPO --branch op-node/$VERSION --single-branch . && \ git switch -c branch-$VERSION && \ bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'