cosmos-sdk/x/accounts/errors.go
mergify[bot] b5e9e56d18
feat(accounts): re-introduce bundler (backport #21562) (#22365)
Co-authored-by: testinginprod <98415576+testinginprod@users.noreply.github.com>
Co-authored-by: Julien Robert <julien@rbrt.fr>
2024-10-25 17:20:59 +02:00

14 lines
537 B
Go

package accounts
import "cosmossdk.io/errors"
var (
ErrAASemantics = errors.New(ModuleName, 0, "invalid account abstraction tx semantics")
// ErrAuthentication is returned when the authentication fails.
ErrAuthentication = errors.New(ModuleName, 1, "authentication failed")
// ErrBundlerPayment is returned when the bundler payment fails.
ErrBundlerPayment = errors.New(ModuleName, 2, "bundler payment failed")
// ErrExecution is returned when the execution fails.
ErrExecution = errors.New(ModuleName, 3, "execution failed")
)