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()) { for (const x of usedDenomHashes.values()) {
await exchange.revokeDenomination(x); await exchange.revokeDenomination(x);
} }
console.log("waiting 30 seconds after revocation"); await delayMs(1000);
await delayMs(30000);
await exchange.keyup(); await exchange.keyup();
console.log("waiting 30 seconds after keyup"); await delayMs(1000);
await delayMs(30000);
await merchant.stop(); await merchant.stop();
await merchant.start(); await merchant.start();
await merchant.pingUntilAvailable(); await merchant.pingUntilAvailable();