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 ee5831e commit 014a1ba
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(&log)).for_each(
result.logs.iter().filter_map(|log| decode_console_log(log)).for_each(
|decoded_log| {
executor.console_log(
&mut CheatsCtxt {
Expand Down Expand Up @@ -1406,7 +1406,7 @@ impl Cheatcodes {
}

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

0 comments on commit 014a1ba

Please sign in to comment.