Skip to content

Commit

Permalink
address review
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown unknown committed Nov 21, 2023
1 parent 32a58f0 commit d8e1c94
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions x/accounts/keeper_account_abstraction.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package accounts

import (
"context"
"errors"
"fmt"

"google.golang.org/protobuf/types/known/anypb"
Expand All @@ -13,11 +14,11 @@ import (

var (
// ErrAuthentication is returned when the authentication fails.
ErrAuthentication = fmt.Errorf("authentication failed")
ErrAuthentication = errors.New("authentication failed")
// ErrBundlerPayment is returned when the bundler payment fails.
ErrBundlerPayment = fmt.Errorf("bundler payment failed")
ErrBundlerPayment = errors.New("bundler payment failed")
// ErrExecution is returned when the execution fails.
ErrExecution = fmt.Errorf("execution failed")
ErrExecution = errors.New("execution failed")
)

// ExecuteUserOperation handles the execution of an abstracted account UserOperation.
Expand Down

0 comments on commit d8e1c94

Please sign in to comment.