Skip to content

Commit

Permalink
Define proto for api method 'getunusedbsqaddress'
Browse files Browse the repository at this point in the history
This change adds a proto to support a future api implementation for
getting an unused, bsq funding address.
  • Loading branch information
ghubstan committed Nov 13, 2020
1 parent faf45ec commit 4c03b46
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions proto/src/main/proto/grpc.proto
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,8 @@ service Wallets {
}
rpc GetAddressBalance (GetAddressBalanceRequest) returns (GetAddressBalanceReply) {
}
rpc GetUnusedBsqAddress (GetUnusedBsqAddressRequest) returns (GetUnusedBsqAddressReply) {
}
rpc GetFundingAddresses (GetFundingAddressesRequest) returns (GetFundingAddressesReply) {
}
rpc SetWalletPassword (SetWalletPasswordRequest) returns (SetWalletPasswordReply) {
Expand Down Expand Up @@ -331,6 +333,13 @@ message GetAddressBalanceReply {
AddressBalanceInfo addressBalanceInfo = 1;
}

message GetUnusedBsqAddressRequest {
}

message GetUnusedBsqAddressReply {
string address = 1;
}

message GetFundingAddressesRequest {
}

Expand Down

0 comments on commit 4c03b46

Please sign in to comment.