Open code423n4 opened 3 years ago
pauliax
Unused variables, e.g.: int256 internal constant ETH_DECIMAL_PLACES = 18; remove it to save some gas or use it where intended.
Unused constants do not have an impact on deployed code.
Technically, it makes deployment more expensive. Keeping as is.
Handle
pauliax
Vulnerability details
Impact
Unused variables, e.g.: int256 internal constant ETH_DECIMAL_PLACES = 18; remove it to save some gas or use it where intended.