Skip to content

Commit

Permalink
Use correct validator codec
Browse files Browse the repository at this point in the history
  • Loading branch information
trinitys7 committed Oct 24, 2024
1 parent 2b78988 commit c19b60f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/multi-staking/client/cli/tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ func NewTxCmd(valAddrCodec, ac address.Codec) *cobra.Command {
}

txCmd.AddCommand(
cli.NewCreateValidatorCmd(ac),
cli.NewEditValidatorCmd(ac),
cli.NewCreateValidatorCmd(valAddrCodec),
cli.NewEditValidatorCmd(valAddrCodec),
cli.NewDelegateCmd(valAddrCodec, ac),
cli.NewRedelegateCmd(valAddrCodec, ac),
cli.NewUnbondCmd(valAddrCodec, ac),
Expand Down

0 comments on commit c19b60f

Please sign in to comment.