Skip to content

Commit e377dda

Browse files
fix clippy lint removing unnecessary cast
1 parent 85643d6 commit e377dda

File tree

1 file changed

+1
-1
lines changed
  • aggregation_mode/proof_aggregator/src/backend

1 file changed

+1
-1
lines changed

aggregation_mode/proof_aggregator/src/backend/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ impl ProofAggregator {
374374
// TODO: Move this to a separate method reset_gas_fees()
375375
// Increase gas price/fees for retries before filling
376376
if attempt > 0 {
377-
let multiplier = fee_multiplier.powi(attempt as i32);
377+
let multiplier = fee_multiplier.powi(attempt);
378378

379379
info!(
380380
"Retry attempt {} with increased fee ({}x)",

0 commit comments

Comments
 (0)