Enabling pragma with > in minimum version check

This commit is contained in:
Djordje Mijovic
2020-03-31 23:50:24 +02:00
parent 4a7d2e590d
commit 64ae889dd7
4 changed files with 123 additions and 17 deletions
+2 -2
View File
@@ -605,8 +605,8 @@ Assume you have the following contracts you want to update declared in ``Source.
.. code-block:: none
// This will not compile
pragma solidity >0.4.23;
// This will not compile after 0.5.0
pragma solidity >0.4.23 <0.5.0;
contract Updateable {
function run() public view returns (bool);