mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 15:47:21 +00:00
core/state: add missing address key in state_object log (#32676)
This commit is contained in:
parent
b08b629818
commit
9b730e1997
1 changed files with 1 additions and 1 deletions
|
|
@ -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{}) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue