Docs: change >0.6.99 <0.8.0 to >=0.7.0

This commit is contained in:
Harikrishnan Mulackal
2020-09-28 11:14:45 +02:00
parent f7233f15eb
commit 710231e2b1
14 changed files with 31 additions and 31 deletions
+2 -2
View File
@@ -26,7 +26,7 @@ you can use state machine-like constructs inside a contract.
::
// SPDX-License-Identifier: GPL-3.0
pragma solidity >0.6.99 <0.8.0;
pragma solidity >=0.7.0;
contract Purchase {
uint public value;
@@ -143,4 +143,4 @@ you can use state machine-like constructs inside a contract.
seller.transfer(3 * value);
}
}
}