mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-12 01:41:36 +00:00
core/state: use address hash cache if available
This commit is contained in:
parent
ac406c2fe7
commit
f21fcf8ebe
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