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

Commit

Permalink
frature: add api gettransactionbyid.
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeNinjaEvan committed Jun 19, 2018
1 parent 175c356 commit 212198e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion api/api.proto
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ service WalletSolidity {
};
}
rpc GetPaginatedAssetIssueList (PaginatedMessage) returns (AssetIssueList) {
option (google.api.http) = {
option (google.api.http) = {
post: "/walletsolidity/getpaginatedassetissuelist"
body: "*"
additional_bindings {
Expand All @@ -369,6 +369,15 @@ service WalletSolidity {
}
};
}
rpc GetTransactionById (BytesMessage) returns (Transaction) {
option (google.api.http) = {
post: "/wallet/gettransactionbyid"
body: "*"
additional_bindings {
get: "/wallet/gettransactionbyid"
}
};
}
};

service WalletExtension {
Expand Down

0 comments on commit 212198e

Please sign in to comment.