From 00e9208bb80e2f644c5acbc343ec5d50c56d0c72 Mon Sep 17 00:00:00 2001 From: 2020xibao <117156346+will-2012@users.noreply.github.com> Date: Fri, 20 Jun 2025 12:03:09 +0800 Subject: [PATCH] chore: fix duplicated counter --- core/state/statedb.go | 1 - 1 file changed, 1 deletion(-) diff --git a/core/state/statedb.go b/core/state/statedb.go index 97fc8dcb1d..e1abfecfaa 100644 --- a/core/state/statedb.go +++ b/core/state/statedb.go @@ -718,7 +718,6 @@ 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 }