Skip to content

Commit f5097d7

Browse files
committed
fix: prune issue test
1 parent 7dc1d2b commit f5097d7

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ WORKDIR /app
3434
COPY versions.env /tmp/versions.env
3535

3636
RUN . /tmp/versions.env && git clone $BASE_RETH_NODE_REPO . && \
37-
git checkout tags/$BASE_RETH_NODE_TAG && \
37+
git checkout $BASE_RETH_NODE_TAG && \
3838
bash -c '[ "$(git rev-parse HEAD)" = "$BASE_RETH_NODE_COMMIT" ]' || (echo "Commit hash verification failed" && exit 1)
3939

4040
RUN cargo build --bin base-reth-node --bin base-consensus --bin basectl --profile maxperf

versions.env

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
export BASE_RETH_NODE_COMMIT=01e732cdbae0c624d652da9e608d7d3fe0f9c74b
1+
export BASE_RETH_NODE_COMMIT=6b782759e7c77b387f02ba0ea0633801bb64bc82
22
export BASE_RETH_NODE_REPO=https://github.com/base/base.git
3-
export BASE_RETH_NODE_TAG=v1.1.1
3+
export BASE_RETH_NODE_TAG=meyer9/fix-pruned-history-detection

0 commit comments

Comments
 (0)