CI: fix and pin geth (#206)

This commit is contained in:
xermicus
2025-02-10 17:39:44 +01:00
committed by GitHub
parent 60fc09f787
commit a921e425b4
5 changed files with 53 additions and 14 deletions
+1 -1
View File
@@ -413,7 +413,7 @@ impl Evm {
let stderr = str::from_utf8(output.stderr.as_slice())
.unwrap_or_else(|err| panic!("{EXECUTABLE_NAME} stderr failed to parse: {err}"));
let mut log: EvmLog = stdout.into();
let mut log: EvmLog = format!("{stdout}{stderr}").as_str().into();
log.stderr = stderr.into();
if self.bench {
log.parse_gas_used_from_bench();