diff --git a/CHANGELOG.md b/CHANGELOG.md index 799f9e9d8daf..e6470dc40943 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -48,8 +48,9 @@ Ref: https://keepachangelog.com/en/1.0.0/ ### Improvements +* (x/group) [#13214](https://github.com/cosmos/cosmos-sdk/pull/13214) Add `withdraw-proposal` command to group module's CLI transaction commands. * (x/auth) [#13048](https://github.com/cosmos/cosmos-sdk/pull/13048) Add handling of AccountNumberStoreKeyPrefix to the simulation decoder. -* (simapp) [#13108](https://github.com/cosmos/cosmos-sdk/pull/13108) Call `SetIAVLCacheSize` with the configured value in simapp. +* (simapp) [#13108](https://github.com/cosmos/cosmos-sdk/pull/13108) Call `SetIAVLCacheSize` with the configured value in simapp. ### Bug Fixes diff --git a/x/group/client/cli/tx.go b/x/group/client/cli/tx.go index d5dfbadfe8ab..4d8c46628df8 100644 --- a/x/group/client/cli/tx.go +++ b/x/group/client/cli/tx.go @@ -40,6 +40,7 @@ func TxCmd(name string) *cobra.Command { MsgUpdateGroupPolicyAdminCmd(), MsgUpdateGroupPolicyDecisionPolicyCmd(), MsgUpdateGroupPolicyMetadataCmd(), + MsgWithdrawProposalCmd(), MsgSubmitProposalCmd(), MsgVoteCmd(), MsgExecCmd(),