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 GitHub
parent b08b629818
commit 9b730e1997
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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