add getTransactions API for Android

This commit is contained in:
Florian Dold 2020-05-13 21:43:03 +05:30
parent 6e17a60692
commit cda75feb5b
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B

View File

@ -162,6 +162,10 @@ class AndroidWalletMessageHandler {
}
};
}
case "getTransactions": {
const wallet = await this.wp.promise;
return await wallet.getTransactions(args);
}
case "abortProposal": {
const wallet = await this.wp.promise;
if (typeof args.proposalId !== "string") {