Skip to content

Commit

Permalink
Small typo in stake/client/cli/tx.go (#3157)
Browse files Browse the repository at this point in the history
* FIX: small typo in stake/client/cli/tx.go
* FIX: another typo in stake/client/cli/tx.go
  • Loading branch information
npinto authored and jackzampolin committed Dec 18, 2018
1 parent f4fb360 commit f32286d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/stake/client/cli/tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func GetCmdCreateValidator(cdc *codec.Codec) *cobra.Command {
func GetCmdEditValidator(cdc *codec.Codec) *cobra.Command {
cmd := &cobra.Command{
Use: "edit-validator",
Short: "edit and existing validator account",
Short: "edit an existing validator account",
RunE: func(cmd *cobra.Command, args []string) error {
txBldr := authtxb.NewTxBuilderFromCLI().WithTxEncoder(auth.DefaultTxEncoder(cdc))
cliCtx := context.NewCLIContext().
Expand Down Expand Up @@ -114,7 +114,7 @@ func GetCmdEditValidator(cdc *codec.Codec) *cobra.Command {
func GetCmdDelegate(cdc *codec.Codec) *cobra.Command {
cmd := &cobra.Command{
Use: "delegate",
Short: "delegate liquid tokens to an validator",
Short: "delegate liquid tokens to a validator",
RunE: func(cmd *cobra.Command, args []string) error {
txBldr := authtxb.NewTxBuilderFromCLI().WithTxEncoder(auth.DefaultTxEncoder(cdc))
cliCtx := context.NewCLIContext().
Expand Down

0 comments on commit f32286d

Please sign in to comment.