Skip to content

Commit

Permalink
Update commands setup
Browse files Browse the repository at this point in the history
  • Loading branch information
rkollar committed Oct 23, 2024
1 parent b9c04d9 commit 820213a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cmd/sscd/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -176,14 +176,14 @@ func queryCommand() *cobra.Command {
}

cmd.AddCommand(
//authcmd.GetAccountCmd(),
rpc.ValidatorCommand(),
//rpc.BlockCommand(),
rpc.WaitTxCmd(),
server.QueryBlockCmd(),
authcmd.QueryTxsByEventsCmd(),
server.QueryBlocksCmd(),
authcmd.QueryTxCmd(),
server.QueryBlockResultsCmd(),
)

app.ModuleBasics.AddQueryCommands(cmd)
cmd.PersistentFlags().String(flags.FlagChainID, "", "The network chain ID")

return cmd
Expand All @@ -203,14 +203,14 @@ func txCommand() *cobra.Command {
authcmd.GetSignCommand(),
authcmd.GetSignBatchCommand(),
authcmd.GetMultiSignCommand(),
authcmd.GetMultiSignBatchCmd(),
authcmd.GetValidateSignaturesCommand(),
flags.LineBreak,
authcmd.GetBroadcastCommand(),
authcmd.GetEncodeCommand(),
authcmd.GetDecodeCommand(),
authcmd.GetSimulateCmd(),
)

app.ModuleBasics.AddTxCommands(cmd)
cmd.PersistentFlags().String(flags.FlagChainID, "", "The network chain ID")

return cmd
Expand Down

0 comments on commit 820213a

Please sign in to comment.