diff --git a/app/ante/ante.go b/app/ante/ante.go index 80be822..e10bdaa 100644 --- a/app/ante/ante.go +++ b/app/ante/ante.go @@ -128,6 +128,7 @@ func NewAnteHandler(options HandlerOptions) (sdk.AnteHandler, error) { func CreateAnteHandlerForOPinit(ak ante.AccountKeeper, signModeHandler *txsigning.HandlerMap) sdk.AnteHandler { return sdk.ChainAnteDecorators( + ante.NewValidateBasicDecorator(), ante.NewSetPubKeyDecorator(ak), ante.NewValidateSigCountDecorator(ak), ante.NewSigGasConsumeDecorator(ak, ante.DefaultSigVerificationGasConsumer),