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
In the current implementation of the EasyTrack contract next modifications might reduce gas costs:
mark the governanceToken variable as immutable cause this variable is set only once on the deployment step and can't be changed.
remove modifiers whenNotPaused from pause() method and whenPaused from unpause() method. This modifiers called in internal methods _pause() and _unpause().
The text was updated successfully, but these errors were encountered:
In the current implementation of the
EasyTrack
contract next modifications might reduce gas costs:governanceToken
variable as immutable cause this variable is set only once on the deployment step and can't be changed.whenNotPaused
frompause()
method andwhenPaused
fromunpause()
method. This modifiers called in internal methods_pause()
and_unpause()
.The text was updated successfully, but these errors were encountered: