pull/5101/head
aniket-engg 3 months ago committed by Aniket
parent 185b75c043
commit e870e491d9
  1. 2
      libs/remix-tests/tests/examples_1/simple_storage.sol
  2. 2
      libs/remix-tests/tests/examples_1/simple_storage_test.sol
  3. 2
      libs/remix-tests/tests/examples_2/simple_storage.sol
  4. 2
      libs/remix-tests/tests/examples_2/simple_storage_test.sol
  5. 2
      libs/remix-tests/tests/examples_3/simple_string.sol
  6. 2
      libs/remix-tests/tests/examples_3/simple_string_test.sol
  7. 2
      libs/remix-tests/tests/examples_5/contract/simple_storage.sol
  8. 2
      libs/remix-tests/tests/examples_5/lib/EvenOdd.sol
  9. 2
      libs/remix-tests/tests/examples_5/test/simple_storage_test.sol
  10. 2
      libs/remix-tests/tests/number/number_test.sol

@ -1,4 +1,4 @@
pragma solidity >= 0.5.0 < 0.8.0;
pragma solidity >= 0.5.0 < 0.9.0;
contract SimpleStorage {
uint public storedData;

@ -1,4 +1,4 @@
pragma solidity >= 0.5.0 < 0.8.0;
pragma solidity >= 0.5.0 < 0.9.0;
import "./simple_storage.sol";
contract MyTest {

@ -1,4 +1,4 @@
pragma solidity >= 0.5.0 < 0.8.0;
pragma solidity >= 0.5.0 < 0.9.0;
contract SimpleStorage {
uint public storedData;

@ -1,4 +1,4 @@
pragma solidity >= 0.5.0 < 0.8.0;
pragma solidity >= 0.5.0 < 0.9.0;
import "./simple_storage.sol";
contract MyTest {

@ -1,4 +1,4 @@
pragma solidity >= 0.5.0 < 0.8.0;
pragma solidity >= 0.5.0 < 0.9.0;
contract SimpleString {
string public storedData;

@ -1,4 +1,4 @@
pragma solidity >= 0.5.0 < 0.8.0;
pragma solidity >= 0.5.0 < 0.9.0;
import "./simple_string.sol";
contract StringTest {

@ -1,4 +1,4 @@
pragma solidity >= 0.5.0 < 0.8.0;
pragma solidity >= 0.5.0 < 0.9.0;
import "../../examples_4/SafeMath.sol";
import "../lib/EvenOdd.sol";

@ -1,4 +1,4 @@
pragma solidity >= 0.5.0 < 0.8.0;
pragma solidity >= 0.5.0 < 0.9.0;
contract EvenOdd {

@ -1,4 +1,4 @@
pragma solidity >= 0.5.0 < 0.8.0;
pragma solidity >= 0.5.0 < 0.9.0;
import "./../contract/simple_storage.sol";
contract StorageResolveTest {

@ -1,4 +1,4 @@
pragma solidity >= 0.5.0 < 0.8.0;
pragma solidity >= 0.5.0 < 0.9.0;
contract IntegerTest {

Loading…
Cancel
Save