diff --git a/api/api.proto b/api/api.proto index 06fc8fc0c..c6073d364 100644 --- a/api/api.proto +++ b/api/api.proto @@ -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) { @@ -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;