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
I have a solidity file named 'Manager.sol' for compiler version 0.5.1. First line of the file reads pragma solidity 0.5.1 However, while running I am getting the following error.
Manager.sol:1:1: Warning: Source file does not specify required compiler version! Consider adding "pragma solidity ^0.5.2;"
^
pragma solidity ^0.4.13;
Is there a bug or a fundamental mistake I am doing?
The text was updated successfully, but these errors were encountered:
rahulrajpl
changed the title
Cannot flatten file for version sol compiler version 0.5.1
Cannot flatten file for sol compiler version 0.5.1
Mar 16, 2019
Looks like it automatically adds the pragma solidity ^0.4.13 instead of the included pragmas for every flattened contract .sol. You can go in and change it to what it should be in the flattened output.
I have a solidity file named 'Manager.sol' for compiler version 0.5.1. First line of the file reads pragma solidity 0.5.1 However, while running I am getting the following error.
Is there a bug or a fundamental mistake I am doing?
The text was updated successfully, but these errors were encountered: