Skip to content

Commit

Permalink
Merge pull request #82 from oraclize/fix/limit-solidity-pragma
Browse files Browse the repository at this point in the history
fix/limits solidity pragma of 0.5.x version of API
  • Loading branch information
D-Nice authored Mar 22, 2019
2 parents f5dda56 + a316448 commit b7a62b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oraclizeAPI_0.5.sol
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
pragma solidity >= 0.5.0; // Incompatible compiler version - please select a compiler within the stated pragma range, or use a different version of the oraclizeAPI!
pragma solidity >= 0.5.0 < 0.6.0; // Incompatible compiler version - please select a compiler within the stated pragma range, or use a different version of the oraclizeAPI!

// Dummy contract only used to emit to end-user they are using wrong solc
contract solcChecker {
Expand Down

0 comments on commit b7a62b4

Please sign in to comment.