Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

Commit

Permalink
fix: revert seconds per slot (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
h4ck3rk3y authored Jun 28, 2023
1 parent 75744dd commit 959729e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions package_io/input_parser.star
Original file line number Diff line number Diff line change
Expand Up @@ -156,10 +156,10 @@ def default_network_params():
"num_validator_keys_per_node": 64,
"network_id": "3151908",
"deposit_contract_address": "0x4242424242424242424242424242424242424242",
"seconds_per_slot": 4,
"slots_per_epoch": 20,
"seconds_per_slot": 12,
"slots_per_epoch": 32,
"genesis_delay": 10,
"capella_fork_epoch": 1,
"capella_fork_epoch": 2,
"deneb_fork_epoch": 5,
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,6 @@ def new_cl_genesis_config_template_data(network_id, seconds_per_slot, unix_times
"PreregisteredValidatorKeysMnemonic": preregistered_validator_keys_mnemonic,
"DepositContractAddress": deposit_contract_address,
"GenesisDelay": genesis_delay,
# each capella epoch is around 2 minutes, we multiply it with 3 so that it happens around the time of EL (6.5)
"CapellaForkEpoch": capella_fork_epoch*3,
"CapellaForkEpoch": capella_fork_epoch,
"DenebForkEpoch": deneb_fork_epoch
}

0 comments on commit 959729e

Please sign in to comment.