Skip to content

Commit

Permalink
Updated gas_limit conversion; added TAIKO_DOCKER_IMAGE_NAME; removed …
Browse files Browse the repository at this point in the history
…ARM64 build steps
  • Loading branch information
johntaiko committed Jan 2, 2025
1 parent 35aab34 commit 401c0e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/taiko/payload/builder/src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ where
let (cfg_with_handler_cfg, mut block_env) =
self.evm_config.next_cfg_and_block_env(parent, next_attributes)?;
block_env.basefee = config.attributes.base_fee_per_gas;
block_env.gas_limit = config.attributes.block_metadata.gas_limit.into();
block_env.gas_limit = U256::from(config.attributes.block_metadata.gas_limit);
block_env.prevrandao = Some(config.attributes.block_metadata.mix_hash);
block_env.coinbase = config.attributes.block_metadata.beneficiary;

Expand Down

0 comments on commit 401c0e3

Please sign in to comment.