summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-05-13 21:43:03 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-05-13 21:43:03 +0530
commitcda75feb5bf7623439f3f5f8da0c6da0c164b3fb (patch)
treec93317ce7b92e3e53bc896c26827d208d633384c
parent6e17a6069282b87fa7e872de44505b9676bc3e78 (diff)
downloadwallet-core-cda75feb5bf7623439f3f5f8da0c6da0c164b3fb.tar.gz
wallet-core-cda75feb5bf7623439f3f5f8da0c6da0c164b3fb.tar.bz2
wallet-core-cda75feb5bf7623439f3f5f8da0c6da0c164b3fb.zip
add getTransactions API for Androidv0.7.1-dev.4
-rw-r--r--src/android/index.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/android/index.ts b/src/android/index.ts
index 36a3d47a5..0e8efd840 100644
--- a/src/android/index.ts
+++ b/src/android/index.ts
@@ -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") {