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
The visibility of the following functions can be restricted in order to save gas:
The Space contract's initialize function can be made external.
The SpaceManager contract's enableSpace and disableSpace functions could be made external. Alternatively, an internal and external copy of the functions could exist, if inheriting contracts should have access to these functions. Additionally, the isSpaceEnabled function could be made external, and internal uses (e.g. the onlySpace modifier) should directly access the spaces mapping to save gas.
The text was updated successfully, but these errors were encountered:
The visibility of the following functions can be restricted in order to save gas:
The text was updated successfully, but these errors were encountered: