Closed code423n4 closed 2 years ago
certora
In CommuintyIssuance.sol line 84 you use assert instead of require. assert is a waste of gas since it will take all the gas that was sent to the transaction instead of stopping at the amount of gas spent until the failure.
CommuintyIssuance.sol
Manual code review
replace assert with require
@LilYeti: Duplicate #51 and that issue should level severity G
Duplicate #157
Handle
certora
Vulnerability details
Impact
In
CommuintyIssuance.sol
line 84 you use assert instead of require. assert is a waste of gas since it will take all the gas that was sent to the transaction instead of stopping at the amount of gas spent until the failure.Tools Used
Manual code review
Recommended Mitigation Steps
replace assert with require