Răsfoiți Sursa

style: fix formatting

Co-Authored-By: Jayant Krishnamurthy <jayant@dourolabs.xyz>
Devin AI 11 luni în urmă
părinte
comite
f174c5c155
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      apps/fortuna/src/chain/eth_gas_oracle.rs

+ 1 - 1
apps/fortuna/src/chain/eth_gas_oracle.rs

@@ -97,7 +97,7 @@ pub fn eip1559_default_estimator(base_fee_per_gas: U256, rewards: Vec<Vec<U256>>
     let max_fee_per_gas = if max_priority_fee_per_gas > potential_max_fee {
         max_priority_fee_per_gas + potential_max_fee
     } else {
-        std::cmp::max(potential_max_fee, max_priority_fee_per_gas)  // Ensure max_fee_per_gas is always >= max_priority_fee_per_gas
+        std::cmp::max(potential_max_fee, max_priority_fee_per_gas) // Ensure max_fee_per_gas is always >= max_priority_fee_per_gas
     };
 
     (max_fee_per_gas, max_priority_fee_per_gas)