Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kuzdogan committed Aug 5, 2023
1 parent da9e46d commit e3b917c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/lib-sourcify/src/lib/solidityCompiler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export async function useCompiler(version: string, solcJsonInput: JsonInput) {
// Run Worker for solc versions < 0.4.0 for clean compiler context. See https://github.com/ethereum/sourcify/issues/1099
if (semver.lt(coercedVersion, '0.4.0')) {
compiled = await new Promise((resolve, reject) => {
let worker = importWorker(
const worker = importWorker(
path.resolve(__dirname, './compilerWorker.ts'),
{
workerData: { version, inputStringified },
Expand Down

0 comments on commit e3b917c

Please sign in to comment.