Skip to content

Commit

Permalink
fix: lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mrekucci committed Oct 6, 2023
1 parent e9b4def commit 7875927
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/transaction/transaction.go
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ func (t *transactionService) UnwrapABIError(ctx context.Context, req *TxRequest,
if cErr == nil {
return err
}
err = fmt.Errorf("%w: %s", err, cErr)
err = fmt.Errorf("%w: %s", err, cErr) //nolint:errorlint

var derr rpc.DataError
if !errors.As(cErr, &derr) {
Expand Down

0 comments on commit 7875927

Please sign in to comment.