From 2884a35688aaf28ec0e70a8f31474648bf6af258 Mon Sep 17 00:00:00 2001 From: Geoff Stuart Date: Thu, 11 Jan 2024 16:27:19 -0500 Subject: [PATCH] Fix typo --- main/main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main/main.go b/main/main.go index 7a14b7c4..586f42d4 100644 --- a/main/main.go +++ b/main/main.go @@ -115,12 +115,12 @@ func main() { var unhealthyRelayers []string for id, health := range relayerHealth { if !health.Load() { - unhealthlyRelayers = append(unhealthlyRelayers, id.Hex()) + unhealthyRelayers = append(unhealthyRelayers, id.Hex()) } } - if len(unhealthlyRelayers) > 0 { - return fmt.Errorf("relayers are unhealthy for blockchains %v", unhealthlyRelayers) + if len(unhealthyRelayers) > 0 { + return fmt.Errorf("relayers are unhealthy for blockchains %v", unhealthyRelayers) } return nil },