Skip to content

Commit

Permalink
Using setTimeout
Browse files Browse the repository at this point in the history
  • Loading branch information
remedcu committed Oct 28, 2024
1 parent 05f4322 commit 17275bb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/review/verifyDeployment.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { promises as fs } from 'node:fs';
import path from 'node:path';
import util from 'node:util';
import { setTimeout } from 'node:timers/promises';

import { ethers } from 'ethers';

Expand Down Expand Up @@ -84,7 +85,7 @@ async function main() {

debug(`• ${deployment} deployment OK`);
}
await new Promise((resolve) => setTimeout(resolve, 1000));
await setTimeout(1000);
}
}

Expand Down

0 comments on commit 17275bb

Please sign in to comment.