From f89f020117f7fb762a5422a4c02e5cb821b11b59 Mon Sep 17 00:00:00 2001 From: Matjaz Verbole Date: Wed, 6 Nov 2024 08:23:05 +0100 Subject: [PATCH 1/2] Update Reth client to v1.1.1 --- reth/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reth/Dockerfile b/reth/Dockerfile index be3f871..e8bc5ef 100644 --- a/reth/Dockerfile +++ b/reth/Dockerfile @@ -22,8 +22,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/paradigmxyz/reth.git -ENV VERSION=v1.1.0 -ENV COMMIT=1ba631ba9581973e7c6cadeea92cfe1802aceb4a +ENV VERSION=v1.1.1 +ENV COMMIT=15c230bac20e2b1b3532c8b0d470e815fbc0cc22 RUN git clone $REPO --branch $VERSION --single-branch . && \ git switch -c branch-$VERSION && \ bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]' From e491fbd5a18e686f2a5eef336fe5f5ab8e1a9738 Mon Sep 17 00:00:00 2001 From: Matjaz Verbole Date: Wed, 6 Nov 2024 08:23:43 +0100 Subject: [PATCH 2/2] Experimental engine is default now, and the --engine.experimental flag is deprecated. --- README.md | 3 +-- reth/reth-entrypoint | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f164a3d..0ff7238 100644 --- a/README.md +++ b/README.md @@ -153,8 +153,7 @@ Navigate to your `op-geth` directory and start service by running the command: --rollup.sequencerhttp=SEQUENCER_HTTP \ --rollup.halt=major \ --port=30303 \ - --rollup.disabletxpoolgossip=true \ - --engine.experimental + --rollup.disabletxpoolgossip=true ``` Refer to the `op-geth` configuration [documentation](https://docs.optimism.io/builders/node-operators/management/configuration#op-geth) for detailed information about available options. diff --git a/reth/reth-entrypoint b/reth/reth-entrypoint index 4f43e14..af2305e 100755 --- a/reth/reth-entrypoint +++ b/reth/reth-entrypoint @@ -44,5 +44,4 @@ exec ./op-reth node \ --disable-discovery \ --port="$P2P_PORT" \ --rollup.sequencer-http=$SEQUENCER_HTTP \ - --rollup.disable-tx-pool-gossip \ - --engine.experimental + --rollup.disable-tx-pool-gossip