File tree 4 files changed +163
-108
lines changed
proto/interchain_security/ccv/provider/v1
4 files changed +163
-108
lines changed Original file line number Diff line number Diff line change
1
+ - Fix incorrect message defitions in the proto files of the provider module
2
+ ([ \# 2095] ( https://github.com/cosmos/interchain-security/pull/2095 ) )
Original file line number Diff line number Diff line change
1
+ - Fix incorrect message defitions in the proto files of the provider module
2
+ ([ \# 2095] ( https://github.com/cosmos/interchain-security/pull/2095 ) )
Original file line number Diff line number Diff line change @@ -270,6 +270,8 @@ message MsgOptOutResponse {}
270
270
message MsgSetConsumerCommissionRate {
271
271
option (gogoproto.equal ) = false ;
272
272
option (gogoproto.goproto_getters ) = false ;
273
+ option (cosmos.msg.v1.signer ) = "signer" ;
274
+
273
275
// The validator address on the provider
274
276
string provider_addr = 1 [ (gogoproto.moretags ) = "yaml:\"address\"" ];
275
277
// The chain id of the consumer chain to set a commission rate
@@ -281,6 +283,8 @@ message MsgSetConsumerCommissionRate {
281
283
(gogoproto.customtype ) = "cosmossdk.io/math.LegacyDec" ,
282
284
(gogoproto.nullable ) = false
283
285
];
286
+ // signer address
287
+ string signer = 4 [(cosmos_proto.scalar ) = "cosmos.AddressString" ];
284
288
}
285
289
286
290
@@ -292,6 +296,8 @@ message MsgSetConsumerCommissionRateResponse {}
292
296
//
293
297
// Note: this replaces ConsumerModificationProposal which is deprecated and will be removed soon
294
298
message MsgConsumerModification {
299
+ option (cosmos.msg.v1.signer ) = "authority" ;
300
+
295
301
// the title of the proposal
296
302
string title = 1 ;
297
303
// the description of the proposal
You can’t perform that action at this time.
0 commit comments