Skip to content

Commit

Permalink
Merge branch 'master' into robert/secp256r1-changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-zaremba authored Jul 27, 2021
2 parents 57a98b2 + efa675e commit de17d64
Show file tree
Hide file tree
Showing 3 changed files with 366 additions and 365 deletions.
26 changes: 13 additions & 13 deletions proto/cosmos/group/v1beta1/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ service Query {

// GroupAccountInfo queries group account info based on group account address.
rpc GroupAccountInfo(QueryGroupAccountInfoRequest) returns (QueryGroupAccountInfoResponse);

// GroupMembers queries members of a group
rpc GroupMembers(QueryGroupMembersRequest) returns (QueryGroupMembersResponse);

Expand All @@ -25,16 +25,16 @@ service Query {

// GroupAccountsByGroup queries group accounts by group id.
rpc GroupAccountsByGroup(QueryGroupAccountsByGroupRequest) returns (QueryGroupAccountsByGroupResponse);

// GroupsByAdmin queries group accounts by admin address.
rpc GroupAccountsByAdmin(QueryGroupAccountsByAdminRequest) returns (QueryGroupAccountsByAdminResponse);

// Proposal queries a proposal based on proposal id.
rpc Proposal(QueryProposalRequest) returns (QueryProposalResponse);

// ProposalsByGroupAccount queries proposals based on group account address.
rpc ProposalsByGroupAccount(QueryProposalsByGroupAccountRequest) returns (QueryProposalsByGroupAccountResponse);

// VoteByProposalVoter queries a vote by proposal id and voter.
rpc VoteByProposalVoter(QueryVoteByProposalVoterRequest) returns (QueryVoteByProposalVoterResponse);

Expand All @@ -47,16 +47,16 @@ service Query {

// QueryGroupInfoRequest is the Query/GroupInfo request type.
message QueryGroupInfoRequest {

// group_id is the unique ID of the group.
uint64 group_id = 1;
}

// QueryGroupInfoResponse is the Query/GroupInfo response type.
message QueryGroupInfoResponse {

// info is the GroupInfo for the group.
GroupInfo info = 1;
// info is the GroupInfo for the group.
GroupInfo info = 1;
}

// QueryGroupAccountInfoRequest is the Query/GroupAccountInfo request type.
Expand All @@ -69,8 +69,8 @@ message QueryGroupAccountInfoRequest {
// QueryGroupAccountInfoResponse is the Query/GroupAccountInfo response type.
message QueryGroupAccountInfoResponse {

// info is the GroupAccountInfo for the group account.
GroupAccountInfo info = 1;
// info is the GroupAccountInfo for the group account.
GroupAccountInfo info = 1;
}

// QueryGroupMembersRequest is the Query/GroupMembersRequest request type.
Expand Down Expand Up @@ -115,7 +115,7 @@ message QueryGroupsByAdminResponse {

// QueryGroupAccountsByGroupRequest is the Query/GroupAccountsByGroup request type.
message QueryGroupAccountsByGroupRequest {

// group_id is the unique ID of the group account's group.
uint64 group_id = 1;

Expand All @@ -135,7 +135,7 @@ message QueryGroupAccountsByGroupResponse {

// QueryGroupAccountsByAdminRequest is the Query/GroupAccountsByAdmin request type.
message QueryGroupAccountsByAdminRequest {

// admin is the admin address of the group account.
string admin = 1;

Expand Down Expand Up @@ -192,7 +192,7 @@ message QueryVoteByProposalVoterRequest {

// proposal_id is the unique ID of a proposal.
uint64 proposal_id = 1;

// voter is a proposal voter account address.
string voter = 2;
}
Expand All @@ -209,7 +209,7 @@ message QueryVotesByProposalRequest {

// proposal_id is the unique ID of a proposal.
uint64 proposal_id = 1;

// pagination defines an optional pagination for the request.
cosmos.base.query.v1beta1.PageRequest pagination = 2;
}
Expand Down
Loading

0 comments on commit de17d64

Please sign in to comment.