taler-typescript-core

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

commit e9da70b5b810bd88bbf733c6632f0280c34ccc9c
parent 93e9c3b6cf5000d73b1a7d577efb3c05a07d03dd
Author: Florian Dold <florian@dold.me>
Date:   Sat,  7 Aug 2021 17:39:50 +0200

construct deposit URL correctly

Diffstat:
Mpackages/taler-wallet-core/src/operations/deposits.ts | 2+-
Mpackages/taler-wallet-core/src/operations/testing.ts | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/packages/taler-wallet-core/src/operations/deposits.ts b/packages/taler-wallet-core/src/operations/deposits.ts @@ -294,7 +294,7 @@ export async function trackDepositGroup( for (const dp of depositPermissions) { const url = new URL( - `/deposits/${wireHash}/${depositGroup.merchantPub}/${depositGroup.contractTermsHash}/${dp.coin_pub}`, + `deposits/${wireHash}/${depositGroup.merchantPub}/${depositGroup.contractTermsHash}/${dp.coin_pub}`, dp.exchange_url, ); const sig = await ws.cryptoApi.signTrackTransaction({ diff --git a/packages/taler-wallet-core/src/operations/testing.ts b/packages/taler-wallet-core/src/operations/testing.ts @@ -244,7 +244,7 @@ async function checkPayment( merchantBackend: MerchantBackendInfo, orderId: string, ): Promise<CheckPaymentResponse> { - const reqUrl = new URL(`/private/orders/${orderId}`, merchantBackend.baseUrl); + const reqUrl = new URL(`private/orders/${orderId}`, merchantBackend.baseUrl); reqUrl.searchParams.set("order_id", orderId); const resp = await http.get(reqUrl.href, { headers: getMerchantAuthHeader(merchantBackend),