Skip to content

Commit 1cb0644

Browse files
committed
Revert "update solc version"
This reverts commit d23cd75.
1 parent 65da185 commit 1cb0644

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

demo/app/contracts/simple_storage.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pragma solidity ^0.4.18;
1+
pragma solidity ^0.4.7;
22
contract SimpleStorage {
33
uint public storedData;
44

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"promptly": "^2.1.0",
3434
"serve-static": "^1.11.1",
3535
"shelljs": "^0.5.0",
36-
"solc": "0.4.18",
36+
"solc": "0.4.17",
3737
"tar": "^3.1.5",
3838
"toposort": "^1.0.0",
3939
"underscore": "^1.8.3",

test_app/app/contracts/another_storage.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pragma solidity ^0.4.18;
1+
pragma solidity ^0.4.11;
22
contract AnotherStorage {
33
address public simpleStorageAddress;
44
address simpleStorageAddress2;

test_app/app/contracts/ownable.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pragma solidity ^0.4.18;
1+
pragma solidity ^0.4.11;
22

33
/**
44
* @title Ownable

test_app/app/contracts/simple_storage.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pragma solidity ^0.4.18;
1+
pragma solidity ^0.4.7;
22

33
import "ownable.sol";
44

test_app/app/contracts/test.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pragma solidity ^0.4.18;
1+
pragma solidity ^0.4.11;
22

33
library ZAMyLib {
44

test_app/app/contracts/token.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// https://github.com/nexusdev/erc20/blob/master/contracts/base.sol
22

3-
pragma solidity ^0.4.18;
3+
pragma solidity ^0.4.2;
44
contract Token {
55

66
event Transfer(address indexed from, address indexed to, uint value);

test_app/config/contracts.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"default": {
33
"versions": {
44
"web3.js": "1.0.0-beta",
5-
"solc": "0.4.18"
5+
"solc": "0.4.17"
66
},
77
"deployment": {
88
"host": "localhost",

0 commit comments

Comments
 (0)