Skip to content

Commit

Permalink
Fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
alcuadrado committed Jul 9, 2024
1 parent 3084ec6 commit 2f8ec7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/hardhat-verify/src/internal/tasks/etherscan.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,12 @@ subtask(TASK_VERIFY_ETHERSCAN)
chainConfig
);

let isVerified = false
let isVerified = false;
try {
isVerified = await etherscan.isVerified(address);
} catch (err) {
if (!force || err instanceof NetworkRequestError) {
throw err
throw err;
}
// https://github.com/blockscout/blockscout/issues/9001
}
Expand Down

0 comments on commit 2f8ec7b

Please sign in to comment.