Skip to content

Commit

Permalink
fix(devnet): fork offset should be 0x (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
welkin22 authored Jun 14, 2024
1 parent a5404e3 commit 92cada6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bedrock-devnet/devnet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,9 +287,9 @@ def devnet_deploy(paths):
deploy_config['proxyAdminOwner'] = l1_init_holder
deploy_config['finalSystemOwner'] = l1_init_holder
deploy_config['governanceTokenOwner'] = l1_init_holder
deploy_config['l2GenesisDeltaTimeOffset'] = "0x1"
deploy_config['l2GenesisDeltaTimeOffset'] = "0x0"
deploy_config['fermat'] = 0
deploy_config['L2GenesisEcotoneTimeOffset'] = "0x2"
deploy_config['L2GenesisEcotoneTimeOffset'] = "0x0"
write_json(devnet_cfg_orig, deploy_config)

if os.path.exists(paths.addresses_json_path):
Expand Down

0 comments on commit 92cada6

Please sign in to comment.