Skip to content

Commit

Permalink
fix: add more delaye between guid checks
Browse files Browse the repository at this point in the history
  • Loading branch information
kartojal committed Dec 13, 2023
1 parent b08f6f3 commit a8a895f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "catapulta-verify",
"version": "0.1.8",
"version": "0.1.9",
"author": "@kartojal <david@web3ops.co> (https://catapulta.sh/)",
"repository": "github:catapulta-sh/catapulta-verify",
"main": "./out/index.mjs",
Expand Down
2 changes: 1 addition & 1 deletion src/utils/calltrace-verifier.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const callTraceVerifier = async (
console.log(`Verifying contract ${call.to}, with guid: ${guid}`);

for (let i = 0; i < 30; i++) {
await delay(350);
await delay(1000);
const { status, message } = await checkVerificationStatus(guid, chainId, etherscanUrl, etherscanApiKey);

if (status !== 2) {
Expand Down

0 comments on commit a8a895f

Please sign in to comment.