Skip to content

Commit

Permalink
decrease gas limit overshoot to 40%
Browse files Browse the repository at this point in the history
  • Loading branch information
tcoratger committed Oct 31, 2024
1 parent 2c468f5 commit 6ae862d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/providers/eth_provider/gas.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ where

let gas_used = self.estimate_gas_inner(request, block_id).await?;

// Increase the gas used by 200% to make sure the transaction will not fail due to gas.
// Increase the gas used by 40% to make sure the transaction will not fail due to gas.
// This is a temporary solution until we have a proper gas estimation.
// Does not apply to Hive feature otherwise end2end tests will fail.
let gas_used = if cfg!(feature = "hive") { gas_used } else { gas_used * 2 };
let gas_used = if cfg!(feature = "hive") { gas_used } else { gas_used * 140 / 100 };
Ok(U256::from(gas_used))
}

Expand Down

0 comments on commit 6ae862d

Please sign in to comment.