20,000 USDC
View results
Submission Details
Severity: gas
Valid

Lack of unchecked in loops

Summary

Lack of unchecked loops

Vulnerability Details

Use unchecked to increment the loop variable as it can save gas:

Impact

it save some gas

Tools Used

manuall

Recommendations

do i++ in unchecked.

for(uint256 i; i < length;) {
unchecked{
++i;
}
}

Support

FAQs

Can't find an answer? Chat with us on Discord, Twitter or Linkedin.