Closed
Description
What is wrong?
Double checking this is the intended functionality.
EIP170 states that the contract size limit was changed to 2**14 + 2**13
which is 24,576 bytes. The following line implementations the constant for EIP170, but it is off by one.
How can it be fixed
Validate that the number is correctly applied. If it is, consider making the number match and modifying the condition that tests for it so that it works with the actual number described in EIP170.