Skip to content
This repository has been archived by the owner on May 29, 2024. It is now read-only.

Commit

Permalink
Fix linting error (#161)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethen Pociask authored Sep 28, 2023
1 parent 14481ce commit 9f21426
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion internal/api/service/health.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ import (
func (svc *PessimismService) CheckHealth() *models.HealthCheck {
var wg sync.WaitGroup

wg.Add(2)
checks := 2 // number of checks to perform
wg.Add(checks)

hc := &models.ChainConnectionStatus{
IsL1Healthy: false,
Expand Down

0 comments on commit 9f21426

Please sign in to comment.