From dd9e4555baf3b98478e9ad2b0edf81ea81add5e2 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Thu, 23 Feb 2023 15:52:32 +0100 Subject: wallet-core: fixup for legacy peer-push-debit transaction --- packages/taler-wallet-core/src/operations/pay-peer.ts | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'packages/taler-wallet-core/src/operations') diff --git a/packages/taler-wallet-core/src/operations/pay-peer.ts b/packages/taler-wallet-core/src/operations/pay-peer.ts index 541e96280..6a04bce7c 100644 --- a/packages/taler-wallet-core/src/operations/pay-peer.ts +++ b/packages/taler-wallet-core/src/operations/pay-peer.ts @@ -1580,6 +1580,8 @@ export async function checkPeerPullPaymentInitiation( // Select an exchange where we have money in the specified currency // FIXME: How do we handle regional currency scopes here? Is it an additional input? + logger.trace("checking peer-pull-credit fees"); + const currency = Amounts.currencyOf(req.amount); let exchangeUrl; if (req.exchangeBaseUrl) { @@ -1592,6 +1594,8 @@ export async function checkPeerPullPaymentInitiation( throw Error("no exchange found for initiating a peer pull payment"); } + logger.trace(`found ${exchangeUrl} as preferred exchange`); + const wi = await getExchangeWithdrawalInfo( ws, exchangeUrl, @@ -1599,6 +1603,8 @@ export async function checkPeerPullPaymentInitiation( undefined, ); + logger.trace(`got withdrawal info`); + return { exchangeBaseUrl: exchangeUrl, amountEffective: wi.withdrawalAmountEffective, -- cgit v1.2.3