From 52f12917b79696cd250b07da7fb951b71f8d5600 Mon Sep 17 00:00:00 2001 From: Alexey Shekhirin <5773434+shekhirin@users.noreply.github.com> Date: Thu, 9 Jan 2025 21:10:25 +0000 Subject: [PATCH] some comments formatting --- crates/trie/sparse/src/trie.rs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/crates/trie/sparse/src/trie.rs b/crates/trie/sparse/src/trie.rs index 46431a1d1eae..b7cba834567f 100644 --- a/crates/trie/sparse/src/trie.rs +++ b/crates/trie/sparse/src/trie.rs @@ -746,11 +746,9 @@ impl
RevealedSparseTrie
{ .get(&path) .is_some_and(|mask| mask.is_bit_set(last_child_nibble)) ) || - ( - // A branch or an extension node explicitly set the - // `store_in_db_trie` flag - child_node_type.store_in_db_trie() - ); + // A branch or an extension node explicitly set the + // `store_in_db_trie` flag + child_node_type.store_in_db_trie(); if should_set_tree_mask_bit { tree_mask.set_bit(last_child_nibble); }