format x/group proto files (#9795)
This commit is contained in:
parent
aa37ae9e74
commit
efa675eb8d
|
@ -31,7 +31,8 @@ service Msg {
|
|||
rpc UpdateGroupAccountAdmin(MsgUpdateGroupAccountAdminRequest) returns (MsgUpdateGroupAccountAdminResponse);
|
||||
|
||||
// UpdateGroupAccountDecisionPolicy allows a group account decision policy to be updated.
|
||||
rpc UpdateGroupAccountDecisionPolicy(MsgUpdateGroupAccountDecisionPolicyRequest) returns (MsgUpdateGroupAccountDecisionPolicyResponse);
|
||||
rpc UpdateGroupAccountDecisionPolicy(MsgUpdateGroupAccountDecisionPolicyRequest)
|
||||
returns (MsgUpdateGroupAccountDecisionPolicyResponse);
|
||||
|
||||
// UpdateGroupAccountMetadata updates a group account metadata.
|
||||
rpc UpdateGroupAccountMetadata(MsgUpdateGroupAccountMetadataRequest) returns (MsgUpdateGroupAccountMetadataResponse);
|
||||
|
@ -85,7 +86,7 @@ message MsgUpdateGroupMembersRequest {
|
|||
}
|
||||
|
||||
// MsgUpdateGroupMembersResponse is the Msg/UpdateGroupMembers response type.
|
||||
message MsgUpdateGroupMembersResponse { }
|
||||
message MsgUpdateGroupMembersResponse {}
|
||||
|
||||
// MsgUpdateGroupAdminRequest is the Msg/UpdateGroupAdmin request type.
|
||||
message MsgUpdateGroupAdminRequest {
|
||||
|
@ -101,7 +102,7 @@ message MsgUpdateGroupAdminRequest {
|
|||
}
|
||||
|
||||
// MsgUpdateGroupAdminResponse is the Msg/UpdateGroupAdmin response type.
|
||||
message MsgUpdateGroupAdminResponse { }
|
||||
message MsgUpdateGroupAdminResponse {}
|
||||
|
||||
// MsgUpdateGroupMetadataRequest is the Msg/UpdateGroupMetadata request type.
|
||||
message MsgUpdateGroupMetadataRequest {
|
||||
|
@ -117,7 +118,7 @@ message MsgUpdateGroupMetadataRequest {
|
|||
}
|
||||
|
||||
// MsgUpdateGroupMetadataResponse is the Msg/UpdateGroupMetadata response type.
|
||||
message MsgUpdateGroupMetadataResponse { }
|
||||
message MsgUpdateGroupMetadataResponse {}
|
||||
|
||||
//
|
||||
// Group Accounts
|
||||
|
@ -161,7 +162,7 @@ message MsgUpdateGroupAccountAdminRequest {
|
|||
}
|
||||
|
||||
// MsgUpdateGroupAccountAdminResponse is the Msg/UpdateGroupAccountAdmin response type.
|
||||
message MsgUpdateGroupAccountAdminResponse { }
|
||||
message MsgUpdateGroupAccountAdminResponse {}
|
||||
|
||||
// MsgUpdateGroupAccountDecisionPolicyRequest is the Msg/UpdateGroupAccountDecisionPolicy request type.
|
||||
message MsgUpdateGroupAccountDecisionPolicyRequest {
|
||||
|
@ -178,7 +179,7 @@ message MsgUpdateGroupAccountDecisionPolicyRequest {
|
|||
}
|
||||
|
||||
// MsgUpdateGroupAccountDecisionPolicyResponse is the Msg/UpdateGroupAccountDecisionPolicy response type.
|
||||
message MsgUpdateGroupAccountDecisionPolicyResponse { }
|
||||
message MsgUpdateGroupAccountDecisionPolicyResponse {}
|
||||
|
||||
// MsgUpdateGroupAccountMetadataRequest is the Msg/UpdateGroupAccountMetadata request type.
|
||||
message MsgUpdateGroupAccountMetadataRequest {
|
||||
|
@ -194,7 +195,7 @@ message MsgUpdateGroupAccountMetadataRequest {
|
|||
}
|
||||
|
||||
// MsgUpdateGroupAccountMetadataResponse is the Msg/UpdateGroupAccountMetadata response type.
|
||||
message MsgUpdateGroupAccountMetadataResponse { }
|
||||
message MsgUpdateGroupAccountMetadataResponse {}
|
||||
|
||||
//
|
||||
// Proposals and Voting
|
||||
|
@ -265,7 +266,7 @@ message MsgVoteRequest {
|
|||
}
|
||||
|
||||
// MsgVoteResponse is the Msg/Vote response type.
|
||||
message MsgVoteResponse { }
|
||||
message MsgVoteResponse {}
|
||||
|
||||
// MsgExecRequest is the Msg/Exec request type.
|
||||
message MsgExecRequest {
|
||||
|
@ -278,4 +279,4 @@ message MsgExecRequest {
|
|||
}
|
||||
|
||||
// MsgExecResponse is the Msg/Exec request type.
|
||||
message MsgExecResponse { }
|
||||
message MsgExecResponse {}
|
||||
|
|
|
@ -206,9 +206,9 @@ message Proposal {
|
|||
// vote_state contains the sums of all weighted votes for this proposal.
|
||||
Tally vote_state = 10 [(gogoproto.nullable) = false];
|
||||
|
||||
// timeout is the timestamp of the block where the proposal execution times out. Header times of the votes and execution messages
|
||||
// must be before this end time to be included in the election. After the timeout timestamp the proposal can not be
|
||||
// executed anymore and should be considered pending delete.
|
||||
// timeout is the timestamp of the block where the proposal execution times out. Header times of the votes and
|
||||
// execution messages must be before this end time to be included in the election. After the timeout timestamp the
|
||||
// proposal can not be executed anymore and should be considered pending delete.
|
||||
google.protobuf.Timestamp timeout = 11 [(gogoproto.nullable) = false, (gogoproto.stdtime) = true];
|
||||
|
||||
// ExecutorResult defines types of proposal executor results.
|
||||
|
|
Loading…
Reference in New Issue