Skip to content

Commit

Permalink
revert print
Browse files Browse the repository at this point in the history
  • Loading branch information
shekhirin committed Feb 14, 2025
1 parent ca1e115 commit 8e2392b
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions crates/engine/tree/src/tree/root.rs
Original file line number Diff line number Diff line change
Expand Up @@ -667,12 +667,6 @@ where
///
/// Returns number of new updates generated by one state update.
fn on_state_update(&mut self, source: StateChangeSource, update: EvmState) -> u64 {
let max = update.iter().max_by_key(|(_, account)| account.storage.len());
if let Some((address, account)) = max {
if account.storage.len() > 500 {
info!(target: "engine::root", ?source, ?address, ?account, "Max storage slot len");
}
}
let mut hashed_state_update = evm_state_to_hashed_post_state(update);

let mut total_updates = 0;
Expand Down

0 comments on commit 8e2392b

Please sign in to comment.