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