Skip to content

Commit

Permalink
chore(evm): remove empty storage logs (#828)
Browse files Browse the repository at this point in the history
* remove obsolete log

* Empty commit
  • Loading branch information
oXtxNt9U authored Jan 20, 2025
1 parent 871992b commit f8da848
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions packages/evm/core/src/db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -536,14 +536,6 @@ impl PersistentDB {
}
}

if storage.is_empty() {
self.logger.log(
LogLevel::Info,
format!("skipping empty storage from {:?}", address),
);
continue;
}

storage.par_sort_unstable_by_key(|a| a.0);

for value in storage.into_iter() {
Expand Down

0 comments on commit f8da848

Please sign in to comment.