taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit cda75feb5bf7623439f3f5f8da0c6da0c164b3fb
parent 6e17a6069282b87fa7e872de44505b9676bc3e78
Author: Florian Dold <florian.dold@gmail.com>
Date:   Wed, 13 May 2020 21:43:03 +0530

add getTransactions API for Android

Diffstat:
Msrc/android/index.ts | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git 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") {