Skip to content

Commit

Permalink
feat(x/ecocredit): forward contract proof-of-concept
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanchristo committed Aug 30, 2022
1 parent f9a0007 commit 4a9969a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion proto/regen/ecocredit/basket/v1/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ service Query {
rpc BasketFees(QueryBasketFeesRequest) returns (QueryBasketFeesResponse) {
option (google.api.http).get = "/regen/ecocredit/basket/v1/basket-fees";
}

}

// QueryBasketRequest is the Query/Basket request type.
Expand Down Expand Up @@ -200,7 +201,7 @@ message BasketBalanceInfo {

// QueryBasketFeesRequest is the Query/BasketFees request type.
// Since Revision 1
message QueryBasketFeesRequest {}
message QueryBasketFeesRequest { }

// QueryBasketFeesResponse is the Query/BasketFees response type.
// Since Revision 1
Expand Down
2 changes: 1 addition & 1 deletion proto/regen/ecocredit/contract/v1alpha1/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ message MsgApprove {
uint64 id = 1;

// class_issuer is the address of the credit class issuer that is approving
// the contract on behalf of credit class.
// the contract on behalf of the credit class.
string class_issuer = 2;
}

Expand Down
3 changes: 2 additions & 1 deletion proto/regen/ecocredit/v1/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ service Msg {
// AddClassCreator is a governance method that allows the addition of new
// address to the class creation allowlist.
// Since Revision 1
rpc AddClassCreator(MsgAddClassCreator) returns (MsgAddClassCreatorResponse);
rpc AddClassCreator(MsgAddClassCreator)
returns (MsgAddClassCreatorResponse);

// RemoveClassCreator is a governance method that removes
// address from the creation allowlist.
Expand Down

0 comments on commit 4a9969a

Please sign in to comment.