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

Commit

Permalink
fix deneb epoch
Browse files Browse the repository at this point in the history
  • Loading branch information
h4ck3rk3y committed Jul 7, 2023
1 parent 16e2d89 commit 9c5436a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ For example, this `eth-network-params.json` adds a second node, running a differ
"seconds_per_slot": 12,
"genesis_delay": 120,
"capella_fork_epoch": 5,
"deneb_fork_epoch": 10
"deneb_fork_epoch": 500
},
"global_client_log_level": "info"
}
Expand Down
4 changes: 3 additions & 1 deletion package_io/input_parser.star
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,9 @@ def default_network_params():
"slots_per_epoch": 32,
"genesis_delay": 10,
"capella_fork_epoch": 2,
"deneb_fork_epoch": 5,
# arbitrarily large while we sort out https://github.com/kurtosis-tech/eth-network-package/issues/42
# this will take 53~ hoours for now
"deneb_fork_epoch": 500,
}

def default_participant():
Expand Down

0 comments on commit 9c5436a

Please sign in to comment.