Skip to content

Commit

Permalink
Change designation msg proto
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel committed Oct 28, 2022
1 parent a605b24 commit d00b337
Show file tree
Hide file tree
Showing 2 changed files with 144 additions and 36 deletions.
8 changes: 7 additions & 1 deletion proto/interchain_security/ccv/provider/v1/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ option go_package = "github.com/cosmos/interchain-security/x/ccv/provider/types"
import "google/api/annotations.proto";
import "gogoproto/gogo.proto";
import "interchain_security/ccv/provider/v1/keymap.proto";
import "cosmos_proto/cosmos.proto";
import "google/protobuf/any.proto";

// Msg defines the Msg service.
service Msg {
Expand All @@ -20,7 +22,11 @@ service Msg {
message MsgDesignateConsensusKeyForConsumerChain {
option (gogoproto.equal) = false;
option (gogoproto.goproto_getters) = false;
string placeholder = 1;
string chain_id = 1;
string provider_validator_address = 2
[ (gogoproto.moretags) = "yaml:\"address\"" ];
google.protobuf.Any consumer_validator_pubkey = 3
[ (cosmos_proto.accepts_interface) = "cosmos.crypto.PubKey" ];
}

message MsgDesignateConsensusKeyForConsumerChainResponse {
Expand Down
172 changes: 137 additions & 35 deletions x/ccv/provider/types/tx.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d00b337

Please sign in to comment.