Skip to content

Commit 67051c9

Browse files
committed
Merge remote-tracking branch 'origin/develop' into Kourin1996/cherry-pick-preflight-script
2 parents 83fed20 + 06b8402 commit 67051c9

File tree

9 files changed

+27
-24
lines changed

9 files changed

+27
-24
lines changed

.github/workflows/push-container.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ jobs:
3232
images: ${{ inputs.artifact-registry }}
3333
tags: |
3434
type=semver,pattern={{version}},match=celo/v(.*)
35+
type=semver,pattern=v{{major}},match=celo/v(\d+\.\d+\.\d+)$
3536
type=edge
3637
type=raw,value=latest,enable={{is_default_branch}}
3738
type=sha

Cargo.lock

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,11 @@ kona-genesis = { git = "https://github.com/op-rs/kona", tag = "kona-client/v1.1.
9797

9898
# TODO: replace commit hash with tag when available
9999
# celo-kona
100-
celo-driver = { git = "https://github.com/celo-org/celo-kona", rev = "5318174" }
101-
celo-proof = { git = "https://github.com/celo-org/celo-kona", rev = "5318174" }
102-
celo-host = { git = "https://github.com/celo-org/celo-kona", rev = "5318174" }
103-
celo-protocol = { git = "https://github.com/celo-org/celo-kona", rev = "5318174", default-features = false }
104-
celo-genesis = { git = "https://github.com/celo-org/celo-kona", rev = "5318174", default-features = false }
100+
celo-driver = { git = "https://github.com/celo-org/celo-kona", rev = "5a8b83b" }
101+
celo-proof = { git = "https://github.com/celo-org/celo-kona", rev = "5a8b83b" }
102+
celo-host = { git = "https://github.com/celo-org/celo-kona", rev = "5a8b83b" }
103+
celo-protocol = { git = "https://github.com/celo-org/celo-kona", rev = "5a8b83b", default-features = false }
104+
celo-genesis = { git = "https://github.com/celo-org/celo-kona", rev = "5a8b83b", default-features = false }
105105

106106
# hana
107107
hana-blobstream = { git = "https://github.com/celestiaorg/hana", rev = "1d272dd83263dbcc2ad97daaac84b2e578a0b288" }
@@ -188,10 +188,10 @@ op-alloy-rpc-types-engine = { version = "0.22.0", default-features = false }
188188
op-alloy-network = { version = "0.22.0", default-features = false }
189189

190190
# Celo Alloy
191-
celo-alloy-consensus = { git = "https://github.com/celo-org/celo-kona", rev = "5318174", default-features = false }
192-
celo-alloy-rpc-types = { git = "https://github.com/celo-org/celo-kona", rev = "5318174", default-features = false }
193-
celo-alloy-rpc-types-engine = { git = "https://github.com/celo-org/celo-kona", rev = "5318174", default-features = false }
194-
celo-alloy-network = { git = "https://github.com/celo-org/celo-kona", rev = "5318174", default-features = false }
191+
celo-alloy-consensus = { git = "https://github.com/celo-org/celo-kona", rev = "5a8b83b", default-features = false }
192+
celo-alloy-rpc-types = { git = "https://github.com/celo-org/celo-kona", rev = "5a8b83b", default-features = false }
193+
celo-alloy-rpc-types-engine = { git = "https://github.com/celo-org/celo-kona", rev = "5a8b83b", default-features = false }
194+
celo-alloy-network = { git = "https://github.com/celo-org/celo-kona", rev = "5a8b83b", default-features = false }
195195

196196
# Execution
197197
alloy-evm = { version = "0.23.1", default-features = false }
@@ -204,7 +204,7 @@ revm-precompile = { version = "29.0.1", default-features = false }
204204
op-revm = { version = "12.0.1", default-features = false }
205205

206206
# Celo Execution
207-
alloy-celo-evm = { git = "https://github.com/celo-org/celo-kona", rev = "5318174", default-features = false }
207+
alloy-celo-evm = { git = "https://github.com/celo-org/celo-kona", rev = "5a8b83b", default-features = false }
208208

209209
# SP1
210210
sp1-sdk = { version = "=5.2.2", default-features = false, features = ["network"] }

elf/aggregation-elf

-2.3 KB
Binary file not shown.

elf/celestia-range-elf-embedded

112 Bytes
Binary file not shown.

elf/eigenda-range-elf-embedded

47.2 KB
Binary file not shown.

elf/range-elf-bump

-596 Bytes
Binary file not shown.

elf/range-elf-embedded

-440 Bytes
Binary file not shown.

fault-proof/bin/challenger.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ struct Args {
2727

2828
#[tokio::main]
2929
async fn main() -> Result<()> {
30+
rustls::crypto::ring::default_provider().install_default().unwrap();
31+
3032
let args = Args::parse();
3133
dotenv::from_filename(args.env_file).ok();
3234

0 commit comments

Comments
 (0)