@@ -31,15 +31,15 @@ var (
3131 ErrDepth = errors .New ("max call depth exceeded" )
3232 ErrInsufficientBalance = errors .New ("insufficient balance for transfer" )
3333 ErrContractAddressCollision = errors .New ("contract address collision" )
34- ErrExecutionReverted = errors .New ("execution reverted" )
35- ErrMaxCodeSizeExceeded = errors .New ("max code size exceeded" )
36- ErrInvalidJump = errors .New ("invalid jump destination" )
37- ErrWriteProtection = errors .New ("write protection" )
38- ErrReturnDataOutOfBounds = errors .New ("return data out of bounds" )
39- ErrGasUintOverflow = errors .New ("gas uint64 overflow" )
40- ErrInvalidRetsub = errors .New ("invalid retsub" )
41- ErrReturnStackExceeded = errors .New ("return stack limit reached" )
42- ErrNoCompatibleInterpreter = errors .New ("no compatible interpreter" )
34+ // ErrExecutionReverted = errors.New("execution reverted") // TODO should be uncommented in future version
35+ ErrMaxCodeSizeExceeded = errors .New ("max code size exceeded" )
36+ ErrInvalidJump = errors .New ("invalid jump destination" )
37+ ErrWriteProtection = errors .New ("write protection" )
38+ ErrReturnDataOutOfBounds = errors .New ("return data out of bounds" )
39+ ErrGasUintOverflow = errors .New ("gas uint64 overflow" )
40+ ErrInvalidRetsub = errors .New ("invalid retsub" )
41+ ErrReturnStackExceeded = errors .New ("return stack limit reached" )
42+ ErrNoCompatibleInterpreter = errors .New ("no compatible interpreter" )
4343)
4444
4545// ErrStackUnderflow wraps an evm error when the items on the stack less
0 commit comments