diff --git a/CHANGELOG.md b/CHANGELOG.md index c385403afac0..23df63f1864a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -69,11 +69,12 @@ Ref: https://keepachangelog.com/en/1.0.0/ ### API Breaking Changes +* (x/distribution) [#17657](https://github.com/cosmos/cosmos-sdk/pull/17657) The distribution keeper now takes 2 more arguments, msg service router and grpc query router. * (x/staking) [#17778](https://github.com/cosmos/cosmos-sdk/pull/17778) Use collections for `Params` * remove from `Keeper`: `GetParams`, `SetParams` * (types/simulation) [#17737](https://github.com/cosmos/cosmos-sdk/pull/17737) Remove unused parameter from `RandomFees` * (x/staking) [#17486](https://github.com/cosmos/cosmos-sdk/pull/17486) Use collections for `RedelegationQueueKey`: - * remove from `types`: `GetRedelegationTimeKey` + * remove from `types`: `GetRedelegationTimeKey`a * remove from `Keeper`: `RedelegationQueueIterator` * (x/staking) [#17562](https://github.com/cosmos/cosmos-sdk/pull/17562) Use collections for `ValidatorQueue` * remove from `types`: `GetValidatorQueueKey`, `ParseValidatorQueueKey` diff --git a/proto/cosmos/protocolpool/v1/query.proto b/proto/cosmos/protocolpool/v1/query.proto index 60e6806b7704..34e95dd5a23a 100644 --- a/proto/cosmos/protocolpool/v1/query.proto +++ b/proto/cosmos/protocolpool/v1/query.proto @@ -28,6 +28,5 @@ message QueryCommunityPoolResponse { repeated cosmos.base.v1beta1.DecCoin pool = 1 [ (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.DecCoins", (gogoproto.nullable) = false, - (amino.dont_omitempty) = true ]; } diff --git a/proto/cosmos/protocolpool/v1/tx.proto b/proto/cosmos/protocolpool/v1/tx.proto index c745f83a4d59..40fcff830048 100644 --- a/proto/cosmos/protocolpool/v1/tx.proto +++ b/proto/cosmos/protocolpool/v1/tx.proto @@ -41,7 +41,6 @@ message MsgFundCommunityPool { repeated cosmos.base.v1beta1.Coin amount = 1 [ (gogoproto.nullable) = false, (amino.dont_omitempty) = true, - (amino.encoding) = "legacy_coins", (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins" ]; string depositor = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"];