From e4c7fac9dbd175f705035ef72ff164db5250b9b9 Mon Sep 17 00:00:00 2001 From: Roman Krasiuk Date: Tue, 3 Dec 2024 17:43:35 +0100 Subject: [PATCH] chore(trie): make Debug impl work for any provider (#13107) --- crates/trie/sparse/src/state.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/trie/sparse/src/state.rs b/crates/trie/sparse/src/state.rs index 85116868f..9b4b38002 100644 --- a/crates/trie/sparse/src/state.rs +++ b/crates/trie/sparse/src/state.rs @@ -46,7 +46,7 @@ impl Default for SparseStateTrie { } } -impl fmt::Debug for SparseStateTrie { +impl fmt::Debug for SparseStateTrie

{ fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { f.debug_struct("SparseStateTrie") .field("state", &self.state)