Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(trie): branch node has only one child log #13836

Merged
merged 1 commit into from
Jan 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/trie/sparse/src/trie.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1094,7 +1094,7 @@ impl<P: BlindedProvider> RevealedSparseTrie<P> {
let mut child_path = removed_path.clone();
child_path.push_unchecked(child_nibble);

trace!(target: "trie::sparse", ?removed_path, ?child_path, ?child, "Branch node has only one child");
trace!(target: "trie::sparse", ?removed_path, ?child_path, "Branch node has only one child");

if self.nodes.get(&child_path).unwrap().is_hash() {
trace!(target: "trie::sparse", ?child_path, "Retrieving remaining blinded branch child");
Expand Down
Loading