mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-13 02:11:34 +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
|
||||
}
|
||||
// The account was existent, it can be either case (c) or (d).
|
||||
addrHash := crypto.Keccak256Hash(addr.Bytes())
|
||||
addrHash := prevObj.addrHash()
|
||||
op := &AccountDelete{
|
||||
Address: addr,
|
||||
Origin: prev,
|
||||
|
|
|
|||
Loading…
Reference in a new issue