Skip to content

Commit c2cd1ab

Browse files
committed
clippy
1 parent fa61676 commit c2cd1ab

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
@@ -451,7 +451,7 @@ fn calculate_gas(retry_count: usize, block_env: &BlockEnv) -> (u128, u128, u128)
451451
let (max_fee_per_gas, max_priority_fee_per_gas, max_fee_per_blob_gas) =
452452
bump_gas_from_retries(retry_count, block_env.basefee, blob_basefee);
453453

454-
(max_fee_per_gas as u128, max_priority_fee_per_gas as u128, max_fee_per_blob_gas as u128)
454+
(max_fee_per_gas as u128, max_priority_fee_per_gas as u128, max_fee_per_blob_gas)
455455
} else {
456456
warn!("no blob excess gas and price in block env, using defaults");
457457
let (max_fee_per_gas, max_priority_fee_per_gas, max_fee_per_blob_gas) =

0 commit comments

Comments
 (0)