Skip to content

Commit

Permalink
Remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ischasny committed Oct 22, 2024
1 parent 4dce16f commit caa88f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/node/base_token_adjuster/src/base_token_l1_behaviour.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use std::{
};

use anyhow::Context;
use bigdecimal::{num_bigint::ToBigInt, BigDecimal, ToPrimitive, Zero};
use bigdecimal::{BigDecimal, Zero};
use zksync_config::BaseTokenAdjusterConfig;
use zksync_eth_client::{BoundEthInterface, CallFunctionArgs, Options};
use zksync_node_fee_model::l1_gas_price::TxParamsProvider;
Expand Down Expand Up @@ -57,7 +57,7 @@ impl BaseTokenL1Behaviour {
self.update_last_persisted_l1_ratio(prev_ratio.clone());
tracing::info!(
"Fetched current base token ratio from the L1: {}",
prev_ratio
prev_ratio.to_bigint()
);
prev_ratio
};
Expand Down

0 comments on commit caa88f4

Please sign in to comment.