Open code423n4 opened 2 years ago
Change the incremental logic from i++ to ++i in order to save some opcodes:
i++
++i
Don't compare a boolean value with true, it will use more opcodes.
Duplicate of https://github.com/code-423n4/2022-02-pooltogether-findings/issues/15
Change the incremental logic from
i++
to++i
in order to save some opcodes:Don't compare a boolean value with true, it will use more opcodes.