-
Notifications
You must be signed in to change notification settings - Fork 0
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
Gas Optimizations #16
Comments
|
My personal judgements:
|
Now, here is the methodology I used for calculating a score for each gas report. I first assigned each submission to be either small-optimization (1 point), medium-optimization (5 points) or large-optimization (10 points), depending on how useful the optimization is. The score of a gas report is the sum of these points, divided by the maximum number of points achieved by a gas report. This maximum number was 10 points, achieved by #67. The number of points achieved by this report is 2 points. |
GAS issues
i++
to++i
in order to save some opcodes:false
oraddress(0)
)destination
it's equal toaddress(0)
at OperatorResolver.sol#L63The text was updated successfully, but these errors were encountered: