Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
nbaztec committed Aug 23, 2024
1 parent fb2233b commit 75d22d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/cheatcodes/src/inspector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -927,7 +927,7 @@ impl Cheatcodes {

// append console logs from zkEVM to the current executor's LogTracer
let executor = &mut TransparentCheatcodesExecutor;
result.logs.iter().filter_map(|log| decode_console_log).for_each(|decoded_log| {
result.logs.iter().filter_map(decode_console_log).for_each(|decoded_log| {
executor.console_log(
&mut CheatsCtxt {
state: self,
Expand Down Expand Up @@ -1404,7 +1404,7 @@ impl Cheatcodes {
}

// append console logs from zkEVM to the current executor's LogTracer
result.logs.iter().filter_map(|log| decode_console_log).for_each(|decoded_log| {
result.logs.iter().filter_map(decode_console_log).for_each(|decoded_log| {
executor.console_log(
&mut CheatsCtxt {
state: self,
Expand Down

0 comments on commit 75d22d4

Please sign in to comment.