Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
gianbelinche committed Nov 28, 2024
1 parent 255276a commit 0b93379
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion core/node/da_clients/src/eigen/sdk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ impl RawEigenClient {
query_client,
);

let verifier = Verifier::new(verifier_config, signing_client).await
let verifier = Verifier::new(verifier_config, signing_client)
.await
.map_err(|e| anyhow::anyhow!(format!("Failed to create verifier {:?}", e)))?;
Ok(RawEigenClient {
client,
Expand Down
2 changes: 1 addition & 1 deletion core/node/da_clients/src/eigen/verifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -540,10 +540,10 @@ mod test {
use std::{collections::HashMap, str::FromStr};

use web3::Bytes;
use zksync_config::configs::da_client::eigen::PointsSource;
use zksync_eth_client::clients::PKSigningClient;
use zksync_types::{url::SensitiveUrl, K256PrivateKey, SLChainId};
use zksync_web3_decl::client::{Client, DynClient, L1};
use zksync_config::configs::da_client::eigen::PointsSource;

use super::{VerificationError, Verifier, VerifierConfig, *};
use crate::eigen::blob_info::{
Expand Down

0 comments on commit 0b93379

Please sign in to comment.