mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-19 06:19:27 +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
|
continue
|
||||||
}
|
}
|
||||||
if !exist {
|
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
|
continue
|
||||||
}
|
}
|
||||||
if (value != common.Hash{}) {
|
if (value != common.Hash{}) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue