Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ischasny committed Aug 20, 2024
1 parent 97fb0a7 commit f1868c2
Showing 1 changed file with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,15 +95,10 @@ impl BaseTokenRatioPersister {

for attempt in 0..max_attempts {
let (base_fee_per_gas, priority_fee_per_gas) =
self.get_eth_fees(&l1_params, prev_base_fee_per_gas, prev_priority_fee_per_gas);
self.get_eth_fees(l1_params, prev_base_fee_per_gas, prev_priority_fee_per_gas);

result = self
.send_ratio_to_l1(
&l1_params,
new_ratio,
base_fee_per_gas,
priority_fee_per_gas,
)
.send_ratio_to_l1(l1_params, new_ratio, base_fee_per_gas, priority_fee_per_gas)
.await;
if let Some(err) = result.as_ref().err() {
tracing::info!(
Expand Down

0 comments on commit f1868c2

Please sign in to comment.