From 9b730e1997c5f3ae0bcf3bd1e0595e43998dd348 Mon Sep 17 00:00:00 2001 From: Galoretka Date: Fri, 19 Sep 2025 16:13:32 +0300 Subject: [PATCH] core/state: add missing address key in state_object log (#32676) --- core/state/state_object.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/state/state_object.go b/core/state/state_object.go index 767f469bfd..2938750503 100644 --- a/core/state/state_object.go +++ b/core/state/state_object.go @@ -333,7 +333,7 @@ func (s *stateObject) updateTrie() (Trie, error) { continue } if !exist { - log.Error("Storage slot is not found in pending area", s.address, "slot", key) + log.Error("Storage slot is not found in pending area", "address", s.address, "slot", key) continue } if (value != common.Hash{}) {