Skip to content

Commit f588ba1

Browse files
authored
Merge pull request #111 from celo-org/seolaoh/backward-compat-l2-block-number
Backport upstream fix for v1.0.0 games backward compatability
2 parents fdb4bc3 + 0097c88 commit f588ba1

21 files changed

+25
-24
lines changed

.github/workflows/cargo-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- name: Install SP1 toolchain
5050
run: |
5151
curl -L https://sp1.succinct.xyz | bash
52-
~/.sp1/bin/sp1up
52+
~/.sp1/bin/sp1up -v 5.2.4
5353
~/.sp1/bin/cargo-prove prove --version
5454
source ~/.bashrc
5555

.github/workflows/cycle-count-diff-eigenda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Install SP1 toolchain
3333
run: |
3434
curl -L https://sp1.succinct.xyz | bash
35-
~/.sp1/bin/sp1up
35+
~/.sp1/bin/sp1up -v 5.2.4
3636
~/.sp1/bin/cargo-prove prove --version
3737
source ~/.bashrc
3838

.github/workflows/cycle-count-diff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Install SP1 toolchain
3535
run: |
3636
curl -L https://sp1.succinct.xyz | bash
37-
~/.sp1/bin/sp1up
37+
~/.sp1/bin/sp1up -v 5.2.4
3838
~/.sp1/bin/cargo-prove prove --version
3939
source ~/.bashrc
4040

.github/workflows/elf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Install SP1 toolchain
4646
run: |
4747
curl -L https://sp1.succinct.xyz | bash
48-
~/.sp1/bin/sp1up
48+
~/.sp1/bin/sp1up -v 5.2.4
4949
~/.sp1/bin/cargo-prove prove --version
5050
source ~/.bashrc
5151
- name: Setup Docker Buildx

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- name: Install SP1 toolchain
4747
run: |
4848
curl -L https://sp1.succinct.xyz | bash
49-
~/.sp1/bin/sp1up
49+
~/.sp1/bin/sp1up -v 5.2.4
5050
~/.sp1/bin/cargo-prove prove --version
5151
source ~/.bashrc
5252

book/advanced/verify-binaries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Anything that changes these programs requires reproducing the binaries. This inc
1616
Ensure you have the [`cargo prove`](https://docs.succinct.xyz/docs/sp1/getting-started/install#option-1-prebuilt-binaries-recommended) CLI tool installed and have the latest version of the toolchain by running:
1717

1818
```bash
19-
sp1up
19+
sp1up -v 5.2.4
2020
```
2121

2222
and

fault-proof/Dockerfile.challenger

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN rustup install stable && rustup default stable
2222

2323
# Install SP1
2424
RUN curl -L https://sp1.succinct.xyz | bash && \
25-
~/.sp1/bin/sp1up && \
25+
~/.sp1/bin/sp1up -v 5.2.4 && \
2626
~/.sp1/bin/cargo-prove prove --version
2727

2828
# Build stage

fault-proof/Dockerfile.challenger.celo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN apt-get update && apt-get install -y \
1616

1717
# Install SP1
1818
RUN curl -L https://sp1.succinct.xyz | bash && \
19-
~/.sp1/bin/sp1up && \
19+
~/.sp1/bin/sp1up -v 5.2.4 && \
2020
~/.sp1/bin/cargo-prove prove --version
2121

2222

fault-proof/Dockerfile.proposer

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN rustup install stable && rustup default stable
2222

2323
# Install SP1
2424
RUN curl -L https://sp1.succinct.xyz | bash && \
25-
~/.sp1/bin/sp1up && \
25+
~/.sp1/bin/sp1up -v 5.2.4 && \
2626
~/.sp1/bin/cargo-prove prove --version
2727

2828
# Build stage

fault-proof/Dockerfile.proposer.celestia

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN rustup install stable && rustup default stable
2222

2323
# Install SP1
2424
RUN curl -L https://sp1.succinct.xyz | bash && \
25-
~/.sp1/bin/sp1up && \
25+
~/.sp1/bin/sp1up -v 5.2.4 && \
2626
~/.sp1/bin/cargo-prove prove --version
2727

2828
# Build stage

0 commit comments

Comments
 (0)