Skip to content

Commit

Permalink
Don't warn missing checkpoint on nimbus startup
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolmin committed Nov 27, 2024
1 parent f970e15 commit c45f1e1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions commands/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ func StartClients(ctx *cli.Context) (err error) {
consArgs = append(consArgs, fmt.Sprintf("--genesis-beacon-api-url=%s", checkpointURL))
case clients.Lighthouse:
consArgs = append(consArgs, fmt.Sprintf("--checkpoint-sync-url=%s", checkpointURL))
case clients.Nimbus2:
// nimbus doesn't have a checkpoint flag, rather it has a separate process. Catching so the WARN doesn't trigger.
default:
log.Warnf("️⚠️ Checkpoint sync not configured for %s: continuing without checkpoint sync", consensusClient.Name())
}
Expand Down

0 comments on commit c45f1e1

Please sign in to comment.