diff options
-rw-r--r-- | packages/taler-wallet-core/src/operations/withdraw.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/taler-wallet-core/src/operations/withdraw.ts b/packages/taler-wallet-core/src/operations/withdraw.ts index 987a5e062..5b8944aaf 100644 --- a/packages/taler-wallet-core/src/operations/withdraw.ts +++ b/packages/taler-wallet-core/src/operations/withdraw.ts @@ -1181,6 +1181,10 @@ export async function processWithdrawalGroup( let work: Promise<void>[] = []; work = []; 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 + } work.push( processPlanchetVerifyAndStoreCoin( ws, |