Skip to content

Commit

Permalink
remove parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
daveroga committed Aug 29, 2024
1 parent c58ef57 commit 2d148ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/services/blockchain/eth/resolver.go
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ func (r *Resolver) Resolve(
stateInfo, gistInfo, err = r.resolveLatest(ctx, userID)
}
// err == http.505
if err != nil && (!errors.Is(err, services.ErrNotFound)) {
if err != nil && !errors.Is(err, services.ErrNotFound) {
return services.IdentityState{}, err
}

Expand Down

0 comments on commit 2d148ff

Please sign in to comment.