-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
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
Base vaults and strategies upgrade & QSMF #100
Conversation
…rds, change forking block, fixes
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #100 +/- ##
==========================================
+ Coverage 90.75% 93.69% +2.94%
==========================================
Files 49 50 +1
Lines 3730 3697 -33
Branches 433 426 -7
==========================================
+ Hits 3385 3464 +79
+ Misses 205 97 -108
+ Partials 140 136 -4 ☔ View full report in Codecov by Sentry. |
if (farm.status == 0 && CommonLib.eq(farm.strategyLogicId, strategyId)) { | ||
++total; | ||
} |
Check notice
Code scanning / Semgrep OSS
Semgrep Finding: rules.solidity.performance.use-nested-if Note
There are more advantages, such as easier to read code and better coverage reports.
if (farm.status == 0 && CommonLib.eq(farm.strategyLogicId, strategyId)) { | ||
nums[total] = i; | ||
variants[total] = generateDescription(farm, _ammAdapter); | ||
++total; | ||
} |
Check notice
Code scanning / Semgrep OSS
Semgrep Finding: rules.solidity.performance.use-nested-if Note
There are more advantages, such as easier to read code and better coverage reports.
No description provided.