Skip to content

Commit

Permalink
merge main (#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
juan518munoz authored Sep 17, 2024
1 parent 6178498 commit 9193313
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci-core-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -465,6 +465,9 @@ jobs:
wait $PID3
wait $PID4
ci_run zk_supervisor test recovery --no-deps --no-kill --ignore-prerequisites --verbose --chain validium &> ${{ env.GENESIS_RECOVERY_LOGS_DIR }}/validium.log &
PID2=$!
# Upgrade tests should run last, because as soon as they
# finish the bootloader will be different
# TODO make upgrade tests safe to run multiple times
Expand All @@ -475,7 +478,6 @@ jobs:
- name: Upload logs
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
if: always()

with:
name: logs
path: logs
1 change: 1 addition & 0 deletions core/lib/config/src/configs/da_client/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ pub mod avail;
pub mod eigen_da;

pub const EIGENDA_CLIENT_CONFIG_NAME: &str = "EigenDA";

pub const AVAIL_CLIENT_CONFIG_NAME: &str = "Avail";
pub const OBJECT_STORE_CLIENT_CONFIG_NAME: &str = "ObjectStore";

Expand Down
10 changes: 4 additions & 6 deletions core/lib/protobuf_config/src/da_client.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
use anyhow::Context;
use zksync_config::{
configs::{
da_client::{
eigen_da::EigenDAConfig,
DAClient::{Avail, EigenDA, ObjectStore},
},
{self},
configs,
configs::da_client::{
eigen_da::EigenDAConfig,
DAClient::{Avail, EigenDA, ObjectStore},
},
AvailConfig,
};
Expand Down
2 changes: 1 addition & 1 deletion core/node/da_clients/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ parity-scale-codec = { workspace = true, features = ["derive"] }
subxt-signer = { workspace = true, features = ["sr25519", "native"] }

# EigenDA dependencies
reqwest = { version= "0.12" }
reqwest = { version = "0.12" }
http = "1"

0 comments on commit 9193313

Please sign in to comment.