From 14166f506aa074a092e7c14c95f94adc28b883cd Mon Sep 17 00:00:00 2001 From: Juan Gonzalez Date: Mon, 8 Jun 2026 10:40:17 +0200 Subject: [PATCH] Bump op-reth to v2.3.1 Co-Authored-By: Claude Opus 4.8 (1M context) --- README.md | 4 ++-- reth/Dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 80dde9e60..a7c316388 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ cd lisk-node Please use the following client versions: - **op-node**: [v1.19.0](https://github.com/ethereum-optimism/optimism/releases/tag/op-node/v1.19.0) -- **op-reth**: [v2.3.0](https://github.com/ethereum-optimism/optimism/releases/tag/op-reth/v2.3.0) +- **op-reth**: [v2.3.1](https://github.com/ethereum-optimism/optimism/releases/tag/op-reth/v2.3.1) #### Build @@ -85,7 +85,7 @@ Please use the following client versions: git apply ``` -- To build `op-reth` from source, refer to the [`op-reth` source tree](https://github.com/ethereum-optimism/optimism/tree/op-reth%2Fv2.3.0/rust/op-reth) in the `ethereum-optimism/optimism` repository (pinned to the version above). +- To build `op-reth` from source, refer to the [`op-reth` source tree](https://github.com/ethereum-optimism/optimism/tree/op-reth%2Fv2.3.1/rust/op-reth) in the `ethereum-optimism/optimism` repository (pinned to the version above). #### Set environment variables diff --git a/reth/Dockerfile b/reth/Dockerfile index 6daa0eb05..1048b4f7e 100644 --- a/reth/Dockerfile +++ b/reth/Dockerfile @@ -27,8 +27,8 @@ WORKDIR /app RUN apt-get update && apt-get -y upgrade && apt-get install -y git libclang-dev pkg-config curl build-essential ENV REPO=https://github.com/ethereum-optimism/optimism.git -ENV VERSION=op-reth/v2.3.0 -ENV COMMIT=fffe406245952bbf9c6089bd127773e282e770f5 +ENV VERSION=op-reth/v2.3.1 +ENV COMMIT=3bccc608dc19beb9755abdcdd148bbf4ac12d12f RUN git clone $REPO --branch $VERSION --single-branch . && \ git switch -c branch-$VERSION && \ bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'