From b29072c21e72bacc72a5abb81d9d8dd921bab91e Mon Sep 17 00:00:00 2001 From: Lucca Martins Date: Thu, 20 Feb 2025 11:36:52 -0300 Subject: [PATCH] including missed change on statedb --- core/state/statedb.go | 1 + 1 file changed, 1 insertion(+) diff --git a/core/state/statedb.go b/core/state/statedb.go index 0001bfceb7..868f5ad8ea 100644 --- a/core/state/statedb.go +++ b/core/state/statedb.go @@ -994,6 +994,7 @@ func (s *StateDB) getStateObject(addr common.Address) *stateObject { // Insert into the live set obj := newObject(s, addr, acct) s.setStateObject(obj) + s.AccountLoaded++ return obj }) }