Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion api/api.proto
Original file line number Diff line number Diff line change
Expand Up @@ -784,7 +784,7 @@ service Wallet {
rpc GetTransactionFromPending (BytesMessage) returns (Transaction) {
}

rpc GetTransactionListFromPending (EmptyMessage) returns (TransactionList) {
rpc GetTransactionListFromPending (EmptyMessage) returns (TransactionIdList) {
}

rpc GetPendingSize (EmptyMessage) returns (NumberMessage) {
Expand Down Expand Up @@ -1084,6 +1084,9 @@ message BlockList {
message TransactionList {
repeated Transaction transaction = 1;
}
message TransactionIdList {
repeated string txId = 1;
}
message DelegatedResourceMessage {
bytes fromAddress = 1;
bytes toAddress = 2;
Expand Down