Skip to content
This repository has been archived by the owner on Apr 24, 2023. It is now read-only.

Commit

Permalink
Merge pull request #13 from tronprotocol/feature/add_api
Browse files Browse the repository at this point in the history
add GetAccontByAddress.
  • Loading branch information
mu1one authored Mar 20, 2018
2 parents f8fb265 + 8ad511a commit 01ca399
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions api/api.proto
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ service Wallet {

};

rpc GetAccountByAddress (BytesMessage) returns (Account) {

};

rpc ListAccounts (EmptyMessage) returns (AccountList) {

};
Expand Down Expand Up @@ -106,3 +110,6 @@ message EmptyMessage {
message NumberMessage {
int64 num = 1;
}
message BytesMessage {
bytes num = 1;
}

0 comments on commit 01ca399

Please sign in to comment.