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
ERC20Locker used to be compiled with Solidity 0.6.12, so it needed to use SafeMath dependency. Currently, the contract code base utilizes Solidity 0.8.x, which has built in support of overflow and underflow warnings. Thus SafeMath library can be omitted for gas savings and code simplification.
The text was updated successfully, but these errors were encountered:
ERC20Locker
used to be compiled with Solidity 0.6.12, so it needed to useSafeMath
dependency. Currently, the contract code base utilizes Solidity 0.8.x, which has built in support of overflow and underflow warnings. Thus SafeMath library can be omitted for gas savings and code simplification.The text was updated successfully, but these errors were encountered: