Unverified Commit 14d49549 authored by Martin Holst Swende's avatar Martin Holst Swende Committed by GitHub

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

parent 573f373d
...@@ -138,7 +138,7 @@ func (s *StateDB) DumpToCollector(c DumpCollector, excludeCode, excludeStorage, ...@@ -138,7 +138,7 @@ func (s *StateDB) DumpToCollector(c DumpCollector, excludeCode, excludeStorage,
account.SecureKey = it.Key account.SecureKey = it.Key
} }
addr := common.BytesToAddress(addrBytes) addr := common.BytesToAddress(addrBytes)
obj := newObject(nil, addr, data) obj := newObject(s, addr, data)
if !excludeCode { if !excludeCode {
account.Code = common.Bytes2Hex(obj.Code(s.db)) account.Code = common.Bytes2Hex(obj.Code(s.db))
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment