Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
atanmarko committed Oct 4, 2024
1 parent a923ff3 commit efadbde
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mpt_trie/src/debug_tools/diff.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
//! Diffing tools to compare two tries against each other. Useful when you want
//! to find where the tries diverge from one other.
//!
//! Here a top-down approach is used, following the trie structure from the root to
//! the leaves. The diffing is done by comparing the nodes at each level. Diff functions
//! will not return on the first difference, but will try to find and collect all diff
//! points.
//! Here a top-down approach is used, following the trie structure from the root
//! to the leaves. The diffing is done by comparing the nodes at each level.
//! Diff functions will not return on the first difference, but will try to find
//! and collect all diff points.

use std::fmt::{self, Debug};
use std::{fmt::Display, ops::Deref};
Expand Down

0 comments on commit efadbde

Please sign in to comment.