Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Romsters committed Dec 3, 2024
1 parent d63b180 commit 35addb8
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/node/in_memory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1244,7 +1244,9 @@ impl<S: ForkSource + std::fmt::Debug + Clone> InMemoryNode<S> {
}

if !inner.config.disable_console_log {
inner.console_log_handler.handle_calls_recursive(&call_traces);
inner
.console_log_handler
.handle_calls_recursive(&call_traces);
}

if inner.config.show_calls != ShowCalls::None {
Expand Down Expand Up @@ -1425,7 +1427,9 @@ impl<S: ForkSource + std::fmt::Debug + Clone> InMemoryNode<S> {
}

if !inner.config.disable_console_log {
inner.console_log_handler.handle_calls_recursive(&call_traces);
inner
.console_log_handler
.handle_calls_recursive(call_traces);
}

if inner.config.show_calls != ShowCalls::None {
Expand Down

0 comments on commit 35addb8

Please sign in to comment.