You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CL does far too many unnecessary state reads and writes. There will be several issues along these lines.
One thing is that Uptime Accumulators are only needed if there is a tick crossing. We fetch them on every single swap, which is an extra 5 state reads -- a notable sync speed cost!
Lets make them only get fetched once, if there is a tick cross. (And on repeated tick crossings, not do multiple fetches).
The text was updated successfully, but these errors were encountered:
Summary
CL does far too many unnecessary state reads and writes. There will be several issues along these lines.
One thing is that Uptime Accumulators are only needed if there is a tick crossing. We fetch them on every single swap, which is an extra 5 state reads -- a notable sync speed cost!
Lets make them only get fetched once, if there is a tick cross. (And on repeated tick crossings, not do multiple fetches).
The text was updated successfully, but these errors were encountered: