Skip to content

Commit

Permalink
reset PostMintQuoteBolt11Response
Browse files Browse the repository at this point in the history
  • Loading branch information
gohumble committed May 9, 2024
1 parent 86deadd commit 055ef42
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions cashu.proto
Original file line number Diff line number Diff line change
Expand Up @@ -19,28 +19,17 @@ service Mint {
rpc Keys(KeysRequest) returns (KeysResponse){
option (google.api.http) = {
get: "/v1/keys"
response_body: "message"
additional_bindings {
body: "*"
response_body: "message"
}
};
};
rpc KeysById(KeysRequest) returns (KeysResponse){
option (google.api.http) = {
get: "/v1/keys/{id}"
response_body: "message"
additional_bindings {
body: "*"
response_body: "message"
}
};
};
// Starting https://github.com/cashubtc/nuts/blob/main/02.md
rpc KeySets(KeysRequest) returns (KeysResponse){
option (google.api.http) = {
get: "/v1/keysets"
response_body: "message"
};
};
// Starting https://github.com/cashubtc/nuts/blob/main/03.md
Expand All @@ -55,13 +44,11 @@ service Mint {
option (google.api.http) = {
post: "/v1/mint/quote/bolt11"
body: "*"
response_body: "message"
};
};
rpc MintQuoteState(GetQuoteBolt11StateRequest) returns (PostMintQuoteBolt11Response){
option (google.api.http) = {
get: "/v1/mint/quote/bolt11/{quote_id}"
response_body: "message"
};
};
rpc Mint(PostMintBolt11Request) returns (PostMintBolt11Response){
Expand Down

0 comments on commit 055ef42

Please sign in to comment.