Skip to content

Commit

Permalink
fix variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
fgimenez committed Dec 2, 2024
1 parent 2f8eafa commit 34b74d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/engine/tree/src/tree/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2293,9 +2293,9 @@ where
if diff.has_differences() {
info!(target: "engine::tree",
block=?sealed_block.num_hash(),
storage_nodes_only_in_first= ?diff.storage_nodes_only_in_first,
storage_nodes_only_in_second= ?diff.storage_nodes_only_in_second,
storage_nodes_with_differences= ?diff.storage_nodes_with_differences,
storage_tries_only_in_first= ?diff.storage_tries_only_in_first,
storage_tries_only_in_second= ?diff.storage_tries_only_in_second,
storage_tries_with_differences= ?diff.storage_tries_with_differences,
"Found differences in TrieUpdates");
} else {
debug!(target: "engine::tree", block=?sealed_block.num_hash(), "TrieUpdates match exactly");
Expand Down

0 comments on commit 34b74d7

Please sign in to comment.