Skip to content

Commit 7f2c840

Browse files
committed
fix missing wasm cli
1 parent cb2d478 commit 7f2c840

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cmd/paxd/cmd/commands.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66

77
"cosmossdk.io/log"
88
confixcmd "cosmossdk.io/tools/confix/cmd"
9+
wasmcli "github.com/CosmWasm/wasmd/x/wasm/client/cli"
910
dbm "github.com/cosmos/cosmos-db"
1011
"github.com/cosmos/cosmos-sdk/client"
1112
"github.com/cosmos/cosmos-sdk/client/debug"
@@ -25,7 +26,6 @@ import (
2526
ibccmd "github.com/cosmos/ibc-go/v8/modules/core/client/cli"
2627
"github.com/spf13/cobra"
2728
"github.com/spf13/viper"
28-
2929
"github.com/unigrid-project/pax/app"
3030
)
3131

@@ -89,6 +89,7 @@ func queryCommand() *cobra.Command {
8989
authcmd.QueryTxCmd(),
9090
server.QueryBlockResultsCmd(),
9191
ibccmd.GetQueryCmd(),
92+
wasmcli.GetQueryCmd(),
9293
)
9394
cmd.PersistentFlags().String(flags.FlagChainID, "", "The network chain ID")
9495

@@ -116,6 +117,7 @@ func txCommand() *cobra.Command {
116117
authcmd.GetDecodeCommand(),
117118
authcmd.GetSimulateCmd(),
118119
ibccmd.GetTxCmd(),
120+
wasmcli.GetTxCmd(),
119121
)
120122
cmd.PersistentFlags().String(flags.FlagChainID, "", "The network chain ID")
121123

0 commit comments

Comments
 (0)