We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
on proto-stub, dot his too as a nice to have base
func MsgSetServiceName() *cobra.Command { cmd := &cobra.Command{ Use: "set [name]", Short: "Set the nameservice value", Args: cobra.ExactArgs(1), RunE: func(cmd *cobra.Command, args []string) error { cliCtx, err := client.GetClientTxContext(cmd) if err != nil { return err } senderAddress := cliCtx.GetFromAddress() msg := &types.MsgSetServiceName{ Sender: senderAddress.String(), Name: args[0], } return tx.GenerateOrBroadcastTxCLI(cliCtx, cmd.Flags(), msg) }, } flags.AddTxFlagsToCmd(cmd) return cmd }
and also add to txCmd.AddCommand
txCmd.AddCommand
The text was updated successfully, but these errors were encountered:
bug julien on AutoCLI
Sorry, something went wrong.
did not have to bug - you can't use GetTxCmd & GetQuerierCmd, else it just uses the overrides. Looks like this is a thing until SDK v51
#80
No branches or pull requests
on proto-stub, dot his too as a nice to have base
and also add to
txCmd.AddCommand
The text was updated successfully, but these errors were encountered: