-
Notifications
You must be signed in to change notification settings - Fork 326
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change Call50000bytesContract tests #657
Comments
ah so the contract still could be 50k bytes theoretically if it was deployed before, but not anymore? are this tests cause a problem in evm ? |
Yes, because evmone expects the max code size to be smaller. |
what if a contract been deployed with a bigger code size before the HF and evm needs to parse it? anyway since we have the legacy tests this could be updated to a smaller codesize |
At least it did not happen on mainnet. |
check this fix: #658 |
From some HF, the contract size limit is 0x6000 (24576). It is impractical to have tests for a contracts of size 50000 being over 2x larger than the limit.
Please modify the tests to use the limit 0x6000 instead of 50000.
The text was updated successfully, but these errors were encountered: