From 6860ef212da4172f8347ecd7a588a57e5f88f7cc Mon Sep 17 00:00:00 2001 From: jsvisa Date: Wed, 26 Mar 2025 10:16:35 +0800 Subject: [PATCH] core/state: the metric of accountLoaded added once more Signed-off-by: jsvisa --- core/state/statedb.go | 1 - 1 file changed, 1 deletion(-) diff --git a/core/state/statedb.go b/core/state/statedb.go index efafdc1aa2..e3f5b9e1a0 100644 --- a/core/state/statedb.go +++ b/core/state/statedb.go @@ -600,7 +600,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 }