From d94dca6bd4a27833ea6735f4d72bcd41df1f92a5 Mon Sep 17 00:00:00 2001 From: Roman Krasiuk Date: Mon, 4 Mar 2024 15:25:28 +0100 Subject: [PATCH] use display impl for root --- crates/trie/src/trie.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/trie/src/trie.rs b/crates/trie/src/trie.rs index eb7fecad3a81..8a4a69fed905 100644 --- a/crates/trie/src/trie.rs +++ b/crates/trie/src/trie.rs @@ -335,7 +335,7 @@ where trace!( target: "trie::state_root", - ?root, + %root, duration = ?stats.duration(), branches_added = stats.branches_added(), leaves_added = stats.leaves_added(), @@ -532,7 +532,7 @@ where trace!( target: "trie::storage_root", - ?root, + %root, hashed_address = %self.hashed_address, duration = ?stats.duration(), branches_added = stats.branches_added(),