Skip to content

Commit

Permalink
Remove unneeded imports
Browse files Browse the repository at this point in the history
  • Loading branch information
gianbelinche committed Nov 4, 2024
1 parent 7f94fed commit a1e2028
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 14 deletions.
2 changes: 1 addition & 1 deletion core/node/da_clients/src/eigen/memstore.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use rand::{rngs::OsRng, Rng, RngCore};
use sha3::{Digest, Keccak256};
use tokio::time::interval;
use zksync_config::configs::da_client::eigen::MemStoreConfig;
use zksync_da_client::types::{DAError, DispatchResponse, InclusionData};
use zksync_da_client::types::{DAError, InclusionData};

use super::blob_info::{self, BlobInfo};

Expand Down
1 change: 0 additions & 1 deletion core/node/da_clients/src/eigen/sdk.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
use std::{str::FromStr, time::Duration};

use futures::TryFutureExt;
use secp256k1::{ecdsa::RecoverableSignature, SecretKey};
use tokio::sync::mpsc;
use tokio_stream::{wrappers::ReceiverStream, StreamExt};
Expand Down
14 changes: 2 additions & 12 deletions core/node/da_clients/src/eigen/verifier.rs
Original file line number Diff line number Diff line change
@@ -1,19 +1,9 @@
use std::{collections::HashMap, str::FromStr};

use alloy::{
network::Ethereum,
primitives::BlockNumber,
providers::{Provider, RootProvider},
rpc::client::{ClientBuilder, ReqwestClient},
};
use alloy::{network::Ethereum, providers::RootProvider};
use ark_bn254::{Fq, G1Affine};
use ethabi::{encode, Token};
use rust_kzg_bn254::{
blob::{self, Blob},
kzg::Kzg,
polynomial::PolynomialFormat,
};
use sha3::{Digest, Keccak256};
use rust_kzg_bn254::{blob::Blob, kzg::Kzg, polynomial::PolynomialFormat};
use tiny_keccak::{Hasher, Keccak};

use super::{
Expand Down

0 comments on commit a1e2028

Please sign in to comment.