summaryrefslogtreecommitdiff
path: root/src/webex/wxApi.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-12-11 17:46:06 +0100
committerFlorian Dold <florian.dold@gmail.com>2017-12-11 17:46:06 +0100
commitc87a0d55145f140b1f104437ecdd1a1ca1040186 (patch)
treea7ffa0c89520a573360d6fd4a65bf7727888a1c4 /src/webex/wxApi.ts
parent2f441cd1b9e069a0976750b075d36de1f051a0e3 (diff)
downloadwallet-core-c87a0d55145f140b1f104437ecdd1a1ca1040186.tar.gz
wallet-core-c87a0d55145f140b1f104437ecdd1a1ca1040186.tar.bz2
wallet-core-c87a0d55145f140b1f104437ecdd1a1ca1040186.zip
show next url to go after tipping
Diffstat (limited to 'src/webex/wxApi.ts')
-rw-r--r--src/webex/wxApi.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/webex/wxApi.ts b/src/webex/wxApi.ts
index e362fc34a..61a45c024 100644
--- a/src/webex/wxApi.ts
+++ b/src/webex/wxApi.ts
@@ -366,8 +366,8 @@ export function getFullRefundFees(args: { refundPermissions: RefundPermission[]
/**
* Get or generate planchets to give the merchant that wants to tip us.
*/
-export function getTipPlanchets(merchantDomain: string, tipId: string, amount: AmountJson, deadline: number, exchangeUrl: string): Promise<TipPlanchetDetail[]> {
- return callBackend("get-tip-planchets", { merchantDomain, tipId, amount, deadline, exchangeUrl });
+export function getTipPlanchets(merchantDomain: string, tipId: string, amount: AmountJson, deadline: number, exchangeUrl: string, nextUrl: string): Promise<TipPlanchetDetail[]> {
+ return callBackend("get-tip-planchets", { merchantDomain, tipId, amount, deadline, exchangeUrl, nextUrl });
}
export function getTipStatus(merchantDomain: string, tipId: string): Promise<TipStatus> {