From c8336c8c2c8b0caaefa9e375108b73e2de2a1f60 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Fri, 10 Feb 2023 12:53:27 -0300 Subject: pretty --- packages/taler-wallet-core/src/operations/withdraw.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/packages/taler-wallet-core/src/operations/withdraw.ts b/packages/taler-wallet-core/src/operations/withdraw.ts index 63879e557..c2fcf05e8 100644 --- a/packages/taler-wallet-core/src/operations/withdraw.ts +++ b/packages/taler-wallet-core/src/operations/withdraw.ts @@ -549,7 +549,10 @@ async function processPlanchetExchangeBatchRequest( }; } - async function handleKycRequired(resp: HttpResponse, startIdx: number): Promise { + async function handleKycRequired( + resp: HttpResponse, + startIdx: number, + ): Promise { logger.info("withdrawal requires KYC"); const respJson = await resp.json(); const uuidResp = codecForWalletKycUuid().decode(respJson); @@ -794,7 +797,7 @@ async function processPlanchetVerifyAndStoreCoin( type: NotificationType.CoinWithdrawn, numTotal: wgContext.numPlanchets, numWithdrawn: wgContext.planchetsFinished.size, - } + }; // Check if this is the first time that the whole // withdrawal succeeded. If so, mark the withdrawal @@ -1183,7 +1186,7 @@ export async function processWithdrawalGroup( for (let j = 0; j < resp.coinIdxs.length; j++) { if (!resp.batchResp.ev_sigs[j]) { //response may not be available when there is kyc needed - continue + continue; } work.push( processPlanchetVerifyAndStoreCoin( -- cgit v1.2.3