In CREATE
and CREATE2
we have OOG errors (terminating the current execution context) and “light” errors (instruction returns 0 address).
CREATE2
pre EIP-3860:
- Memory expansion (OOG)
- Initcode hashing cost (OOG)
- Call depth check (light)
- Balance check (light)
CREATE2
after EIP-3860:
- Memory expansion (OOG)
- Initcode size limit check (light)
- Initcode hashing cost (OOG)
- Initcode cost (OOG)
- Call depth check (light)
- Balance check (light)
The 3 and 4 can be combined into single one, but 3 does not exist in CREATE
.
The light check are sensitive to the order of checks while OOG checks can happen in any order. Somehow EIP-3860 introduced a light check in between of two OOG checks. This caused a lot confusion and bugs in implementations. To the point the official ethereum/tests still contains incorrect tests as of today.
I think this design choice was a mistake and we should change the limit check to OOG one. Interpretation: the cost of initcode above the limit is infinite.