Merge branch 'main' into jsdw-use-mode-solc-version

This commit is contained in:
James Wilson
2025-08-27 09:48:58 +01:00
committed by GitHub
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -210,7 +210,7 @@ async fn compile_contracts<P: Platform>(
// Some(compiler_version.clone()),
// Some(compiler_path.as_ref().to_path_buf()),
// None,
// err.to_string(),
// format!("{err:#}"),
// )
})?
// Adding the deployed libraries to the compiler.
@@ -238,7 +238,7 @@ async fn compile_contracts<P: Platform>(
// Some(compiler_version.clone()),
// Some(compiler_path.as_ref().to_path_buf()),
// Some(compiler_input.clone()),
// err.to_string(),
// format!("{err:#}"),
// )
// })
.context("Failed to configure compiler with sources and options")?;
+1 -1
View File
@@ -487,7 +487,7 @@ where
.report_test_succeeded_event(steps_executed)
.expect("Can't fail"),
Err(error) => reporter
.report_test_failed_event(error.to_string())
.report_test_failed_event(format!("{error:#}"))
.expect("Can't fail"),
}
}