We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bb5c91 commit 4ccecf6Copy full SHA for 4ccecf6
1 file changed
aggregation_mode/proof_aggregator/src/backend/mod.rs
@@ -593,8 +593,7 @@ impl ProofAggregator {
593
let suggested_priority_fee = provider
594
.get_max_priority_fee_per_gas()
595
.await
596
- .map_err(|e| AggregatedProofSubmissionError::GasPriceError(e.to_string()))?
597
- as u128;
+ .map_err(|e| AggregatedProofSubmissionError::GasPriceError(e.to_string()))?;
598
599
// Calculate priority fee: suggested * (attempt + 1), capped at max
600
let priority_fee_multiplier = (attempt + 1) as u128;
0 commit comments