Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

check prior fork consistently #9255

Merged
merged 7 commits into from
Feb 2, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions op-node/node/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,18 @@ func (cfg *Config) Check() error {
if err := cfg.Beacon.Check(); err != nil {
return fmt.Errorf("misconfigured L1 Beacon API endpoint: %w", err)
}
if cfg.Rollup.CanyonTime == nil {
zhiqiangxu marked this conversation as resolved.
Show resolved Hide resolved
return fmt.Errorf("prior fork canyon activation time is missing")
}
if *cfg.Rollup.CanyonTime > *cfg.Rollup.EcotoneTime {
return fmt.Errorf("prior fork canyon has higher activation time")
}
if cfg.Rollup.RegolithTime == nil {
return fmt.Errorf("prior fork regolith activation time is missing")
}
if *cfg.Rollup.RegolithTime > *cfg.Rollup.CanyonTime {
return fmt.Errorf("prior fork regolith has higher activation time")
}
tynes marked this conversation as resolved.
Show resolved Hide resolved
}
if err := cfg.Rollup.Check(); err != nil {
return fmt.Errorf("rollup config error: %w", err)
Expand Down