format x/group proto files (#9795)

This commit is contained in:
Robert Zaremba 2021-07-28 00:59:09 +02:00 committed by GitHub
parent aa37ae9e74
commit efa675eb8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 336 additions and 335 deletions

View File

@ -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);

View File

@ -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.