including missed change on statedb

This commit is contained in:
Lucca Martins 2025-02-20 11:36:52 -03:00
parent 2b0c071db7
commit b29072c21e
No known key found for this signature in database
GPG key ID: DC3D7F76BDAE23BF

View file

@ -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
})
}