Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Type-safe HardhatError #5283

Merged
merged 10 commits into from
May 29, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,6 @@ export class CompilerDownloader implements ICompilerDownloader {

throw new HardhatError(
HardhatError.ERRORS.SOLC.VERSION_LIST_DOWNLOAD_FAILED,
{},
e,
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ export class NativeCompiler implements ICompiler {

throw new HardhatError(
HardhatError.ERRORS.SOLC.CANT_RUN_NATIVE_COMPILER,
{},
e,
);
}
Expand Down
Loading
Loading