Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
StanislavBreadless committed Aug 7, 2024
1 parent c39be19 commit 2825d49
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion core/node/eth_sender/src/eth_tx_aggregator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use tokio::sync::watch;
use zksync_config::configs::eth_sender::SenderConfig;
use zksync_contracts::BaseSystemContractsHashes;
use zksync_dal::{Connection, ConnectionPool, Core, CoreDal};
use zksync_eth_client::{BoundEthInterface, CallFunctionArgs, EthInterface};
use zksync_eth_client::{BoundEthInterface, CallFunctionArgs};
use zksync_l1_contract_interface::{
i_executor::{
commit::kzg::{KzgInfo, ZK_SYNC_BYTES_PER_BLOB},
Expand Down
4 changes: 2 additions & 2 deletions core/node/fee_model/src/l1_gas_price/gas_adjuster/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ use std::{

use tokio::sync::watch;
use zksync_config::{configs::eth_sender::PubdataSendingMode, GasAdjusterConfig};
use zksync_eth_client::{EthFeeInterface, EthInterface};
use zksync_eth_client::EthFeeInterface;
use zksync_types::{commitment::L1BatchCommitmentMode, L1_GAS_PER_PUBDATA_BYTE, U256};
use zksync_web3_decl::client::{DynClient, ObjectSafeClient, L1, L2};
use zksync_web3_decl::client::{DynClient, L1, L2};

use self::metrics::METRICS;
use super::L1TxParamsProvider;
Expand Down
1 change: 0 additions & 1 deletion core/tests/loadnext/src/account/tx_command_executor.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
use std::time::Instant;

use zksync_eth_client::EthInterface;
use zksync_system_constants::MAX_L1_TRANSACTION_GAS_LIMIT;
use zksync_types::{
api::{BlockNumber, TransactionReceipt},
Expand Down
2 changes: 1 addition & 1 deletion core/tests/loadnext/src/executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::sync::Arc;

use anyhow::anyhow;
use futures::{channel::mpsc, future, SinkExt};
use zksync_eth_client::{EthInterface, Options};
use zksync_eth_client::Options;
use zksync_eth_signer::PrivateKeySigner;
use zksync_system_constants::MAX_L1_TRANSACTION_GAS_LIMIT;
use zksync_types::{
Expand Down

0 comments on commit 2825d49

Please sign in to comment.