We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa85b6a commit 883034dCopy full SHA for 883034d
crates/verify/src/zksync/standard_json.rs
@@ -11,12 +11,15 @@ impl ZksyncSourceProvider for ZksyncStandardJsonSource {
11
&self,
12
context: &ZkVerificationContext,
13
) -> Result<(StandardJsonCompilerInput, String)> {
14
- let input = foundry_compilers::zksync::project_standard_json_input(
+ let mut input = foundry_compilers::zksync::project_standard_json_input(
15
&context.project,
16
&context.target_path,
17
)
18
.wrap_err("failed to get zksolc standard json")?;
19
20
+ // Sanitize the input
21
+ input.settings = input.settings.clone().sanitized(&context.compiler_version.solc);
22
+
23
let relative_path = context
24
.target_path
25
.strip_prefix(context.project.root())
0 commit comments