Skip to content

Commit

Permalink
chore(anvil): fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
iliastsa committed Oct 23, 2024
1 parent 1cc97a4 commit 422288b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/anvil/src/eth/backend/mem/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1438,7 +1438,8 @@ impl Backend {
let block_number = block.number;

let state = if let Some(overrides) = state_overrides {
Box::new(state::apply_state_override(overrides, state)?) as Box<dyn MaybeFullDatabase>
Box::new(state::apply_state_override(overrides, state)?)
as Box<dyn MaybeFullDatabase>
} else {
state
};
Expand Down

0 comments on commit 422288b

Please sign in to comment.