You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a loop iteration consumes constant gas (g) and the number of iterations is "known" (n) in advance, the optimizer should convert the out-of-gas checks into a single if (gas <= n * g) throw before entering the loop.
The text was updated successfully, but these errors were encountered:
If a loop iteration consumes constant gas (
g
) and the number of iterations is "known" (n
) in advance, the optimizer should convert the out-of-gas checks into a singleif (gas <= n * g) throw
before entering the loop.The text was updated successfully, but these errors were encountered: