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
Every L1 contract will get a new function alongside initialize():
function upgrade() external initialize {}
For most contracts it will be empty unless the forthcoming upgrade is adding new values to storage.
For contracts which have a non-empty upgrade() method
We will need a mechanism to identify when an L1 release has occurred which causes these functions to become a 'no-op'. They should be reset at that time.
The text was updated successfully, but these errors were encountered:
Every L1 contract will get a new function alongside
initialize()
:For most contracts it will be empty unless the forthcoming upgrade is adding new values to storage.
For contracts which have a non-empty
upgrade()
methodWe will need a mechanism to identify when an L1 release has occurred which causes these functions to become a 'no-op'. They should be reset at that time.
The text was updated successfully, but these errors were encountered: