mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-23 05:06:43 +00:00
core/state: add missing address key in state_object log
This commit is contained in:
parent
b9e2eb5944
commit
5f51502488
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