From 082722f100ed3893fd637093978b4586c7b8fb93 Mon Sep 17 00:00:00 2001 From: Joe Bowman Date: Mon, 4 Apr 2022 09:34:49 +0100 Subject: [PATCH] add proto since: comments for #11457 updates to reward withdrawal responses (#11530) --- proto/cosmos/distribution/v1beta1/tx.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/proto/cosmos/distribution/v1beta1/tx.proto b/proto/cosmos/distribution/v1beta1/tx.proto index 7f22dce9520e..68fea0c27c16 100644 --- a/proto/cosmos/distribution/v1beta1/tx.proto +++ b/proto/cosmos/distribution/v1beta1/tx.proto @@ -57,6 +57,7 @@ message MsgWithdrawDelegatorReward { // MsgWithdrawDelegatorRewardResponse defines the Msg/WithdrawDelegatorReward response type. message MsgWithdrawDelegatorRewardResponse { + // Since: cosmos-sdk 0.46 repeated cosmos.base.v1beta1.Coin amount = 1 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; } @@ -74,6 +75,7 @@ message MsgWithdrawValidatorCommission { // MsgWithdrawValidatorCommissionResponse defines the Msg/WithdrawValidatorCommission response type. message MsgWithdrawValidatorCommissionResponse { + // Since: cosmos-sdk 0.46 repeated cosmos.base.v1beta1.Coin amount = 1 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; }