We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Details: The check on L75 of CrvDepositor.sol can be simplified to
if(_lockIncentive <= 30){
since _lockIncentive is an uint256 and hence always greater or equal to 0.
_lockIncentive
uint256
The text was updated successfully, but these errors were encountered:
Tadashi issue #253
6c6c2a1
No branches or pull requests
Redundant check can be removed
Details: The check on L75 of CrvDepositor.sol can be simplified to
since
_lockIncentive
is anuint256
and hence always greater or equal to 0.The text was updated successfully, but these errors were encountered: