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 c20669f
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions crates/engine/tree/src/tree/root.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ use std::{
},
time::{Duration, Instant},
};
use tracing::{debug, error, info, trace, trace_span};
use tracing::{debug, error, trace, trace_span};

/// The level below which the sparse trie hashes are calculated in [`update_sparse_trie`].
const SPARSE_TRIE_INCREMENTAL_LEVEL: usize = 2;
Expand Down 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 c20669f

Please sign in to comment.