taler-typescript-core

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

commit 7436d8d8612006b5f7917c63ee6bfe18b06281c9
parent 656fcae88c183ebb2c0d61c94ea763b110cae918
Author: Sebastian <sebasjm@gmail.com>
Date:   Mon,  6 Nov 2023 15:02:29 -0300

prevent parsing for success when kyc trigger

Diffstat:
Mpackages/taler-wallet-core/src/operations/withdraw.ts | 4++++
1 file 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 @@ -936,6 +936,10 @@ async function processPlanchetExchangeBatchRequest( const resp = await ws.http.postJson(reqUrl, batchReq); if (resp.status === HttpStatusCode.UnavailableForLegalReasons) { await handleKycRequired(ws, withdrawalGroup, resp, 0, requestCoinIdxs); + return { + batchResp: { ev_sigs: [] }, + coinIdxs: [], + }; } const r = await readSuccessResponseJsonOrThrow( resp,