core/state: add missing address key in state_object log (#32676)

This commit is contained in:
Galoretka 2025-09-19 16:13:32 +03:00 committed by Alvarez
parent cfa209bb98
commit 0a946fa304

View file

@ -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{}) {