-
Notifications
You must be signed in to change notification settings - Fork 264
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
Investigate if Solidity 0.5.0 will break solidity-coverage #258
Comments
One breaking change I've found is that in interfaces, marking pragma solidity ^0.5.0;
interface MyInterface {
function myFunction(bytes calldata myBytes);
} |
Thanks @NoahHydro. |
Breaking on the new |
sc-forks/solidity-parser#17 |
sc-forks/solidity-parser#18 This should fix it. |
Yes. It did. Fixed in |
One breaking change is the removal of the constant key from the ABI. However it looks like SC will be ok with this, here? We don't really touch the ABI directly.
The text was updated successfully, but these errors were encountered: