You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So the tool just supports those contracts that have pragma versions <= 0.5.12?
My contract is running with 0.6.12. But got this error:
ParserError: Source file requires different compiler version (current compiler is 0.5.12+commit.7709ece9.Linux.g++ - note that nightly builds are considered to be strictly less than the released version
The text was updated successfully, but these errors were encountered:
@enderphan94 The way to resolve the error would be to change the Solidity version referenced in the Dockerfile. You'll see a variable called ARG SOLC=0.5.12 that you need to change to reference your version of Solidity. i.e., ARG SOLC=0.6.12. After rebuilding with that change, the problem should be resolved.
So the tool just supports those contracts that have pragma versions <= 0.5.12?
My contract is running with 0.6.12. But got this error:
ParserError: Source file requires different compiler version (current compiler is 0.5.12+commit.7709ece9.Linux.g++ - note that nightly builds are considered to be strictly less than the released version
The text was updated successfully, but these errors were encountered: