Skip to content

Commit

Permalink
(NOBIDS) temporarily disable ens-errors until BIdS-2437 is solved
Browse files Browse the repository at this point in the history
  • Loading branch information
guybrush committed Jan 19, 2024
1 parent 84fed6b commit d47b8f0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion db/ens.go
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,10 @@ func validateEnsName(client *ethclient.Client, name string, alreadyChecked *EnsC
}
return nil
}
return fmt.Errorf("error could not resolve name [%v]: %w", name, err)
// temporarily disabled, see BIDS-2437 #TODO:patrick
// return fmt.Errorf("error could not resolve name [%v]: %w", name, err)
logger.Errorf("error could not resolve name [%v]: %w", name, err)

Check failure on line 531 in db/ens.go

View workflow job for this annotation

GitHub Actions / Run CI (ubuntu-latest, 1.20.x)

(*github.com/sirupsen/logrus.Entry).Errorf does not support error-wrapping directive %w
return nil
}

// we need to get the main domain to get the expiration date
Expand Down

0 comments on commit d47b8f0

Please sign in to comment.