Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
geoff-vball committed Jan 11, 2024
1 parent 0fa98ad commit 2884a35
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
Expand Down

0 comments on commit 2884a35

Please sign in to comment.