Skip to content

Commit

Permalink
push up min slots per epoch
Browse files Browse the repository at this point in the history
  • Loading branch information
Tofel committed Jan 10, 2024
1 parent ab21990 commit 586f0d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/test_env/eth2_common.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ func (c *EthereumChainConfig) Validate(logger zerolog.Logger) error {
if c.SecondsPerSlot < 3 {
return fmt.Errorf("seconds per slot must be >= 3")
}
if c.SlotsPerEpoch < 1 {
if c.SlotsPerEpoch < 2 {
return fmt.Errorf("slots per epoch must be >= 1")
}
if c.GenesisDelay < 10 {
Expand Down

0 comments on commit 586f0d9

Please sign in to comment.