From fdf5a7b16103796119cfb9e2269baf2a1a175078 Mon Sep 17 00:00:00 2001 From: likhita-809 <78951027+likhita-809@users.noreply.github.com> Date: Fri, 9 Sep 2022 12:48:36 +0530 Subject: [PATCH] fix: Add withdraw proposal cmd to group's CLI tx cmds (#13214) * add withdraw proposal cmd to group's cli tx cmds * add changelog --- CHANGELOG.md | 1 + x/group/client/cli/tx.go | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 53f12dd4bd..0e6017add6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -51,6 +51,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ ### Improvements +* [#13214](https://github.com/cosmos/cosmos-sdk/pull/13214) Add `withdraw-proposal` command to group module's CLI transaction commands. * [#13070](https://github.com/cosmos/cosmos-sdk/pull/13070) Migrate from `gogo/protobuf` to `cosmos/gogoproto`. * [#12981](https://github.com/cosmos/cosmos-sdk/pull/12981) Return proper error when parsing telemetry configuration. * [#12995](https://github.com/cosmos/cosmos-sdk/pull/12995) Add `FormatTime` and `ParseTimeString` methods. diff --git a/x/group/client/cli/tx.go b/x/group/client/cli/tx.go index d5dfbadfe8..4d8c46628d 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(),