Skip to content

Commit

Permalink
Make EVM simulator optional in toolbox
Browse files Browse the repository at this point in the history
  • Loading branch information
slowli committed Sep 27, 2024
1 parent 41fa851 commit d242f13
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ impl DeployL1Config {
.diamond_init_minimal_l2_gas_price,
bootloader_hash: genesis_config.bootloader_hash.unwrap(),
default_aa_hash: genesis_config.default_aa_hash.unwrap(),
evm_simulator_hash: genesis_config.evm_simulator_hash.unwrap(),
evm_simulator_hash: genesis_config.evm_simulator_hash,
diamond_init_priority_tx_max_pubdata: initial_deployment_config
.diamond_init_priority_tx_max_pubdata,
diamond_init_pubdata_pricing_mode: initial_deployment_config
Expand Down Expand Up @@ -195,7 +195,7 @@ pub struct ContractsDeployL1Config {
pub diamond_init_minimal_l2_gas_price: u64,
pub bootloader_hash: H256,
pub default_aa_hash: H256,
pub evm_simulator_hash: H256,
pub evm_simulator_hash: Option<H256>,
}

#[derive(Debug, Deserialize, Serialize, Clone)]
Expand Down

0 comments on commit d242f13

Please sign in to comment.