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
According to --exec flag's help string it suggests to specify 1 to try executing the proposal immediately, but this is not true.
--exec
1
cosmos-sdk/x/group/client/cli/tx.go
Line 537 in 3a03804
When I passed --exec 1 nothing happened.
--exec 1
And I realized that I needed to pass try instead.
try
cosmos-sdk/x/group/client/cli/util.go
Lines 56 to 63 in 3a03804
So we need to change the help string to:
`Set to "try" to try to execute proposal immediately after creation (proposers signatures are considered as Yes votes)`
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
According to
--exec
flag's help string it suggests to specify1
to try executing the proposal immediately, but this is not true.cosmos-sdk/x/group/client/cli/tx.go
Line 537 in 3a03804
When I passed
--exec 1
nothing happened.And I realized that I needed to pass
try
instead.cosmos-sdk/x/group/client/cli/util.go
Lines 56 to 63 in 3a03804
So we need to change the help string to:
`Set to "try" to try to execute proposal immediately after creation (proposers signatures are considered as Yes votes)`
The text was updated successfully, but these errors were encountered: