From f21fcf8ebe7af22c4167c3a9c5366c1ad7913ddf Mon Sep 17 00:00:00 2001 From: Weixie Cui Date: Tue, 21 Apr 2026 20:29:58 +0800 Subject: [PATCH] core/state: use address hash cache if available --- core/state/statedb.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/state/statedb.go b/core/state/statedb.go index 8c57edf08e..a62e3c2020 100644 --- a/core/state/statedb.go +++ b/core/state/statedb.go @@ -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,