From 732164a2209f6dd0c32f0ae3b588e5191ddb533f Mon Sep 17 00:00:00 2001 From: Sameer Kumar Subudhi Date: Fri, 14 Aug 2026 10:00:51 +0200 Subject: [PATCH 1/2] Bump op-reth to v2.4.2 (PLAT-728) Co-Authored-By: Claude Opus 5 (1M context) --- README.md | 4 ++-- reth/Dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 735092f45..220d0d4a6 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ cd lisk-node Please use the following client versions: - **op-node**: [v1.19.4](https://github.com/ethereum-optimism/optimism/releases/tag/op-node/v1.19.4) -- **op-reth**: [v2.4.1](https://github.com/ethereum-optimism/optimism/releases/tag/op-reth/v2.4.1) +- **op-reth**: [v2.4.2](https://github.com/ethereum-optimism/optimism/releases/tag/op-reth/v2.4.2) #### 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.4.1/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.4.2/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 2b5ecfc18..be5fc0a4b 100644 --- a/reth/Dockerfile +++ b/reth/Dockerfile @@ -42,8 +42,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.4.1 -ENV COMMIT=a9a8dad3f1500a4cc2e4077edb480848bfdef29a +ENV VERSION=op-reth/v2.4.2 +ENV COMMIT=f863ff4c12531b315d666331d43da3aeb3719388 RUN git clone $REPO --branch $VERSION --single-branch . && \ git switch -c branch-$VERSION && \ bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]' From 18d1c003af6e5d736156386e2c8eca807078fd5a Mon Sep 17 00:00:00 2001 From: Sameer Kumar Subudhi Date: Fri, 14 Aug 2026 10:05:05 +0200 Subject: [PATCH 2/2] Match builder Rust to upstream toolchain pin (1.95) op-reth's rust/rust-toolchain.toml pins channel 1.95 (workspace rust-version = "1.95"), so rustup synced 1.95 inside the rust:1.94 builder on every build. Use 1.95 as the base image instead. Co-Authored-By: Claude Opus 5 (1M context) --- reth/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reth/Dockerfile b/reth/Dockerfile index be5fc0a4b..6511937c4 100644 --- a/reth/Dockerfile +++ b/reth/Dockerfile @@ -1,5 +1,5 @@ ARG GOLANG_VERSION=1.26 -ARG RUST_VERSION=1.94 +ARG RUST_VERSION=1.95 ARG UBUNTU_VERSION=25.04 FROM golang:$GOLANG_VERSION AS op