Closed code423n4 closed 3 years ago
paulius.eth
No need to use a struct with 1 field here, consumes extra gas: struct EligibilityModule { address impl; } EligibilityModule[] public modules;
can be refactored to: address[] public modules;
Handle
paulius.eth
Vulnerability details
Impact
No need to use a struct with 1 field here, consumes extra gas: struct EligibilityModule { address impl; } EligibilityModule[] public modules;
Recommended Mitigation Steps
can be refactored to: address[] public modules;