mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-16 11:51:35 +00:00
core/state: use address hash cache if available (#34780)
This commit is contained in:
parent
dca3cf02a2
commit
3abc4cea35
1 changed files with 1 additions and 1 deletions
|
|
@ -1126,7 +1126,7 @@ func (s *StateDB) handleDestruction(noStorageWiping bool) (map[common.Hash]*Acco
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
// The account was existent, it can be either case (c) or (d).
|
// The account was existent, it can be either case (c) or (d).
|
||||||
addrHash := crypto.Keccak256Hash(addr.Bytes())
|
addrHash := prevObj.addrHash()
|
||||||
op := &AccountDelete{
|
op := &AccountDelete{
|
||||||
Address: addr,
|
Address: addr,
|
||||||
Origin: prev,
|
Origin: prev,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue