Skip to content

Commit

Permalink
(NOBIDS) eth1indexer: fix error handling for resolve
Browse files Browse the repository at this point in the history
  • Loading branch information
guybrush committed Aug 12, 2024
1 parent 8762740 commit b8057ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db/ens.go
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ func validateEnsName(client *ethclient.Client, name string, alreadyChecked *EnsC
if err.Error() == "unregistered name" ||
err.Error() == "no address" ||
err.Error() == "no resolver" ||
err.Error() == "abi: attempting to unmarshall an empty string while arguments are expected" ||
err.Error() == "abi: attempting to unmarshal an empty string while arguments are expected" ||
strings.Contains(err.Error(), "execution reverted") ||
err.Error() == "invalid jump destination" ||
err.Error() == "invalid opcode: INVALID" {
Expand Down

0 comments on commit b8057ae

Please sign in to comment.