gov/client: rename submitproposal to submit-proposal
It is standard in the sdk to use a dash for subcommands / flags with multiple words. This makes submitproposal comply with that.
This commit is contained in:
parent
0c47e6ffdf
commit
12c1eb4d31
|
@ -181,7 +181,7 @@ func TestGaiaCLISubmitProposal(t *testing.T) {
|
||||||
fooAcc := executeGetAccount(t, fmt.Sprintf("gaiacli account %v %v", fooCech, flags))
|
fooAcc := executeGetAccount(t, fmt.Sprintf("gaiacli account %v %v", fooCech, flags))
|
||||||
require.Equal(t, int64(50), fooAcc.GetCoins().AmountOf("steak").Int64())
|
require.Equal(t, int64(50), fooAcc.GetCoins().AmountOf("steak").Int64())
|
||||||
|
|
||||||
executeWrite(t, fmt.Sprintf("gaiacli gov submitproposal %v --proposer=%v --deposit=5steak --type=Text --title=Test --description=test --from=foo", flags, fooCech), pass)
|
executeWrite(t, fmt.Sprintf("gaiacli gov submit-proposal %v --proposer=%v --deposit=5steak --type=Text --title=Test --description=test --from=foo", flags, fooCech), pass)
|
||||||
tests.WaitForNextHeightTM(port)
|
tests.WaitForNextHeightTM(port)
|
||||||
|
|
||||||
fooAcc = executeGetAccount(t, fmt.Sprintf("gaiacli account %v %v", fooCech, flags))
|
fooAcc = executeGetAccount(t, fmt.Sprintf("gaiacli account %v %v", fooCech, flags))
|
||||||
|
|
|
@ -29,7 +29,7 @@ const (
|
||||||
// submit a proposal tx
|
// submit a proposal tx
|
||||||
func GetCmdSubmitProposal(cdc *wire.Codec) *cobra.Command {
|
func GetCmdSubmitProposal(cdc *wire.Codec) *cobra.Command {
|
||||||
cmd := &cobra.Command{
|
cmd := &cobra.Command{
|
||||||
Use: "submitproposal",
|
Use: "submit-proposal",
|
||||||
Short: "Submit a proposal along with an initial deposit",
|
Short: "Submit a proposal along with an initial deposit",
|
||||||
RunE: func(cmd *cobra.Command, args []string) error {
|
RunE: func(cmd *cobra.Command, args []string) error {
|
||||||
title := viper.GetString(flagTitle)
|
title := viper.GetString(flagTitle)
|
||||||
|
|
Loading…
Reference in New Issue