remove debug delay in test

This commit is contained in:
Florian Dold 2021-01-15 18:43:28 +01:00
parent 69b58e65ee
commit e273724b1c
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B

View File

@ -48,11 +48,9 @@ async function revokeAllWalletCoins(req: {
for (const x of usedDenomHashes.values()) {
await exchange.revokeDenomination(x);
}
console.log("waiting 30 seconds after revocation");
await delayMs(30000);
await delayMs(1000);
await exchange.keyup();
console.log("waiting 30 seconds after keyup");
await delayMs(30000);
await delayMs(1000);
await merchant.stop();
await merchant.start();
await merchant.pingUntilAvailable();