pretty
This commit is contained in:
parent
599c6fa954
commit
c8336c8c2c
@ -549,7 +549,10 @@ async function processPlanchetExchangeBatchRequest(
|
||||
};
|
||||
}
|
||||
|
||||
async function handleKycRequired(resp: HttpResponse, startIdx: number): Promise<void> {
|
||||
async function handleKycRequired(
|
||||
resp: HttpResponse,
|
||||
startIdx: number,
|
||||
): Promise<void> {
|
||||
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(
|
||||
|
Loading…
Reference in New Issue
Block a user