Skip to content

Commit

Permalink
op-deployer: update default gas limit values. (#12524)
Browse files Browse the repository at this point in the history
  • Loading branch information
blmalone authored Oct 18, 2024
1 parent 5f7f44c commit 5a37546
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion op-deployer/pkg/deployer/pipeline/opchain.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func DeployOPChain(ctx context.Context, env *Env, bundle ArtifactsBundle, intent
L2ChainId: chainID.Big(),
OpcmProxy: st.ImplementationsDeployment.OpcmProxyAddress,
SaltMixer: st.Create2Salt.String(), // passing through salt generated at state initialization
GasLimit: 30_000_000,
GasLimit: 60_000_000,
DisputeGameType: 1, // PERMISSIONED_CANNON Game Type
DisputeAbsolutePrestate: common.HexToHash("0x038512e02c4c3f7bdaec27d00edf55b7155e0905301e1a88083e4e0a6764d54c"),
DisputeMaxGameDepth: 73,
Expand Down
2 changes: 1 addition & 1 deletion op-deployer/pkg/deployer/state/deploy_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func DefaultDeployConfig(chainIntent *ChainIntent) genesis.DeployConfig {
return genesis.DeployConfig{
L2InitializationConfig: genesis.L2InitializationConfig{
L2GenesisBlockDeployConfig: genesis.L2GenesisBlockDeployConfig{
L2GenesisBlockGasLimit: 30_000_000,
L2GenesisBlockGasLimit: 60_000_000,
L2GenesisBlockBaseFeePerGas: &l2GenesisBlockBaseFeePerGas,
},
L2VaultsDeployConfig: genesis.L2VaultsDeployConfig{
Expand Down

0 comments on commit 5a37546

Please sign in to comment.