Skip to content

Commit 8055d57

Browse files
authored
fix: remove println in get_env function (#6015)
1 parent 9cc1a81 commit 8055d57

File tree

1 file changed

+0
-1
lines changed
  • crates/evm/src/executor/inspector/cheatcodes

1 file changed

+0
-1
lines changed

crates/evm/src/executor/inspector/cheatcodes/ext.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,6 @@ fn get_env(key: &str, ty: DynSolType, delim: Option<&str>, default: Option<Strin
200200
fmt_err!("Failed to get environment variable `{key}` as type `{ty}`: {e}")
201201
})
202202
})?;
203-
println!("got val: {}", val);
204203
if let Some(d) = delim {
205204
parse::parse_array(val.split(d).map(str::trim), &ty)
206205
} else {

0 commit comments

Comments
 (0)