Skip to content

Commit 92b1dde

Browse files
committed
clippy
1 parent f905e1b commit 92b1dde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tasks/submit.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,7 @@ fn calculate_gas(retry_count: usize, block_env: &BlockEnv) -> (u128, u128, u128)
548548
let (max_fee_per_gas, max_priority_fee_per_gas, max_fee_per_blob_gas) =
549549
bump_gas_from_retries(retry_count, block_env.basefee, blob_basefee);
550550

551-
(max_fee_per_gas as u128, max_priority_fee_per_gas as u128, max_fee_per_blob_gas as u128)
551+
(max_fee_per_gas as u128, max_priority_fee_per_gas as u128, max_fee_per_blob_gas)
552552
} else {
553553
warn!("no blob excess gas and price in block env, using defaults");
554554
let (max_fee_per_gas, max_priority_fee_per_gas, max_fee_per_blob_gas) =

0 commit comments

Comments
 (0)