File tree 2 files changed +5
-2
lines changed 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ import (
14
14
opchildante "github.com/initia-labs/OPinit/x/opchild/ante"
15
15
opchildtypes "github.com/initia-labs/OPinit/x/opchild/types"
16
16
"github.com/initia-labs/initia/app/ante/accnum"
17
+ "github.com/initia-labs/initia/app/ante/sigverify"
17
18
18
19
"github.com/skip-mev/block-sdk/v2/block"
19
20
auctionante "github.com/skip-mev/block-sdk/v2/x/auction/ante"
@@ -111,7 +112,7 @@ func NewAnteHandler(options HandlerOptions) (sdk.AnteHandler, error) {
111
112
ante .NewSetPubKeyDecorator (options .AccountKeeper ),
112
113
ante .NewValidateSigCountDecorator (options .AccountKeeper ),
113
114
ante .NewSigGasConsumeDecorator (options .AccountKeeper , sigGasConsumer ),
114
- ante .NewSigVerificationDecorator (options .AccountKeeper , options .SignModeHandler ),
115
+ sigverify .NewSigVerificationDecorator (options .AccountKeeper , options .SignModeHandler ),
115
116
ante .NewIncrementSequenceDecorator (options .AccountKeeper ),
116
117
ibcante .NewRedundantRelayDecorator (options .IBCkeeper ),
117
118
auctionante .NewAuctionDecorator (options .AuctionKeeper , options .TxEncoder , options .MevLane ),
Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ import (
42
42
wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types"
43
43
44
44
"github.com/initia-labs/initia/app/params"
45
+ cryptokeyring "github.com/initia-labs/initia/crypto/keyring"
45
46
minitiaapp "github.com/initia-labs/miniwasm/app"
46
47
47
48
opchildcli "github.com/initia-labs/OPinit/x/opchild/client/cli"
@@ -92,7 +93,8 @@ func NewRootCmd() (*cobra.Command, params.EncodingConfig) {
92
93
WithInput (os .Stdin ).
93
94
WithAccountRetriever (types.AccountRetriever {}).
94
95
WithHomeDir (minitiaapp .DefaultNodeHome ).
95
- WithViper (minitiaapp .EnvPrefix )
96
+ WithViper (minitiaapp .EnvPrefix ).
97
+ WithKeyringOptions (cryptokeyring .Option ())
96
98
97
99
rootCmd := & cobra.Command {
98
100
Use : basename ,
You can’t perform that action at this time.
0 commit comments