This commit is contained in:
Boss Marco 2021-11-09 10:58:30 +01:00
parent 42cf0c445c
commit 8dadd89edb
No known key found for this signature in database
GPG Key ID: 89A3EC33C625C3DF

View File

@ -77,7 +77,7 @@ export async function runBench1(configJson: any): Promise<void> {
stopWhenDone: true,
});
logger.info(`Finished withdrawal amount=${withdrawAmount} time=${console.time('withdraw')}`);
logger.info(`Finished withdrawal amount=${withdrawAmount} time=${console.timeEnd('withdraw')}`);
for (let i = 0; i < numDeposits; i++) {
@ -93,7 +93,7 @@ export async function runBench1(configJson: any): Promise<void> {
stopWhenDone: true,
});
logger.info(`Finished deposit amount=10 time=${console.time('deposit')}`);
logger.info(`Finished deposit amount=10 time=${console.timeEnd('deposit')}`);
}
wallet.stop();