Skip to content

Commit 2f8ec7b

Browse files
committed
Fix linter errors
1 parent 3084ec6 commit 2f8ec7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/hardhat-verify/src/internal/tasks/etherscan.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,12 +103,12 @@ subtask(TASK_VERIFY_ETHERSCAN)
103103
chainConfig
104104
);
105105

106-
let isVerified = false
106+
let isVerified = false;
107107
try {
108108
isVerified = await etherscan.isVerified(address);
109109
} catch (err) {
110110
if (!force || err instanceof NetworkRequestError) {
111-
throw err
111+
throw err;
112112
}
113113
// https://github.com/blockscout/blockscout/issues/9001
114114
}

0 commit comments

Comments
 (0)