Co-authored-by: Julien Robert <julien@rbrt.fr>
This commit is contained in:
parent
9efec4293d
commit
751e5ecbb2
@ -50,6 +50,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
|
||||
|
||||
* (sims) [21906](https://github.com/cosmos/cosmos-sdk/pull/21906) Skip sims test when running dry on validators
|
||||
* (cli) [#21919](https://github.com/cosmos/cosmos-sdk/pull/21919) Query address-by-acc-num by account_id instead of id.
|
||||
* (x/group) [#22229](https://github.com/cosmos/cosmos-sdk/pull/22229) Accept `1` and `try` in CLI for group proposal exec.
|
||||
|
||||
## [v0.50.10](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.50.10) - 2024-09-20
|
||||
|
||||
|
||||
@ -651,7 +651,7 @@ metadata example:
|
||||
},
|
||||
}
|
||||
|
||||
cmd.Flags().String(FlagExec, "", "Set to 1 to try to execute proposal immediately after creation (proposers signatures are considered as Yes votes)")
|
||||
cmd.Flags().String(FlagExec, "", "Set to 1 or 'try' to try to execute proposal immediately after creation (proposers signatures are considered as Yes votes)")
|
||||
flags.AddTxFlagsToCmd(cmd)
|
||||
|
||||
return cmd
|
||||
|
||||
@ -53,7 +53,7 @@ func parseMembers(membersFile string) ([]group.MemberRequest, error) {
|
||||
|
||||
func execFromString(execStr string) group.Exec {
|
||||
exec := group.Exec_EXEC_UNSPECIFIED
|
||||
if execStr == ExecTry {
|
||||
if execStr == ExecTry || execStr == "1" {
|
||||
exec = group.Exec_EXEC_TRY
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user