remove the test encoding option (#65)

This commit is contained in:
Cyrill Leutwiler
2024-10-04 09:59:27 +02:00
committed by GitHub
parent e8fcd6118e
commit 77fe683f18
5 changed files with 2 additions and 15 deletions
+2 -2
View File
@@ -106,7 +106,7 @@ pub fn build_solidity_with_options(
let project = output.try_to_project(sources, libraries, pipeline, &solc_version, None)?;
let build: crate::Build = project.compile(optimizer_settings, false, false, false, None)?;
let build: crate::Build = project.compile(optimizer_settings, false, false, None)?;
build.write_to_standard_json(
&mut output,
&solc_version,
@@ -229,7 +229,7 @@ pub fn build_yul(source_code: &str) -> anyhow::Result<()> {
let project =
Project::try_from_yul_string(PathBuf::from("test.yul").as_path(), source_code, None)?;
let _build = project.compile(optimizer_settings, false, false, false, None)?;
let _build = project.compile(optimizer_settings, false, false, None)?;
Ok(())
}