Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ameeshaagrawal committed Jun 18, 2024
1 parent 26f814c commit 2259993
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/deploy/utils/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@ export const verify = async (
return true;
} catch (error) {
console.log("Error during verification", error);
if (error.toString().includes("Contract source code already verified")) return true;
if (error.toString().includes("Contract source code already verified"))
return true;
}

return false;
Expand Down

0 comments on commit 2259993

Please sign in to comment.