summaryrefslogtreecommitdiff
path: root/src/operations/withdraw.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-05-11 20:51:45 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-05-11 20:51:45 +0530
commitd7ee78669d4ab25f5f883cc3858ccba4e409c354 (patch)
tree8a206537cc2afa6534766543551070baa0cf7395 /src/operations/withdraw.ts
parent4c614429a0602557273c4783dc0df54ba3687200 (diff)
downloadwallet-core-d7ee78669d4ab25f5f883cc3858ccba4e409c354.tar.gz
wallet-core-d7ee78669d4ab25f5f883cc3858ccba4e409c354.tar.bz2
wallet-core-d7ee78669d4ab25f5f883cc3858ccba4e409c354.zip
create planchets only in one place
Diffstat (limited to 'src/operations/withdraw.ts')
-rw-r--r--src/operations/withdraw.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/operations/withdraw.ts b/src/operations/withdraw.ts
index b89dac776..91e4ff1d8 100644
--- a/src/operations/withdraw.ts
+++ b/src/operations/withdraw.ts
@@ -522,6 +522,7 @@ async function processInBatches(workGen: Iterator<Promise<void>>, batchSize: num
if (batch.length == 0) {
break;
}
+ logger.trace(`processing withdrawal batch of ${batch.length} elements`);
await Promise.all(batch);
}
}