core/state: fix panic in state dumping (#22225)

This commit is contained in:
Martin Holst Swende 2021-01-26 12:15:31 +01:00 committed by GitHub
parent 573f373d2b
commit 14d495491d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -138,7 +138,7 @@ func (s *StateDB) DumpToCollector(c DumpCollector, excludeCode, excludeStorage,
account.SecureKey = it.Key
}
addr := common.BytesToAddress(addrBytes)
obj := newObject(nil, addr, data)
obj := newObject(s, addr, data)
if !excludeCode {
account.Code = common.Bytes2Hex(obj.Code(s.db))
}