From 5e214833f23476fe04339ced0def775bbf795459 Mon Sep 17 00:00:00 2001 From: Danyal Prout Date: Wed, 7 Aug 2024 12:32:19 -0500 Subject: [PATCH] chore: update reth version & return to upstream --- .dockerignore | 2 ++ .gitignore | 3 ++- reth/Dockerfile | 5 ++--- 3 files changed, 6 insertions(+), 4 deletions(-) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..5628ed5 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,2 @@ +geth-data/ +reth-data/ diff --git a/.gitignore b/.gitignore index b8be14d..b2f231e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /.idea/ /geth-data/ -/reth-data/ \ No newline at end of file +/reth-data/ +.DS_Store diff --git a/reth/Dockerfile b/reth/Dockerfile index 0cae8fa..862add0 100644 --- a/reth/Dockerfile +++ b/reth/Dockerfile @@ -20,9 +20,8 @@ WORKDIR /app RUN apt-get update && apt-get -y upgrade && apt-get install -y git libclang-dev pkg-config curl build-essential -#TODO: Revert to upstream, once https://github.com/paradigmxyz/reth/pull/9105 is merged. -ENV REPO=https://github.com/danyalprout/reth.git -ENV COMMIT=c79cbf4a918480556bd37204942a2d69827fed9f +ENV REPO=https://github.com/paradigmxyz/reth.git +ENV COMMIT=29dc8fc05f74111c9ff67ddcd03638ee081b1dc0 RUN git clone $REPO . && git checkout $COMMIT RUN cargo build --bin op-reth --locked --features $FEATURES --profile maxperf