Skip to content

Commit 2690ada

Browse files
committed
Merge branch 'next' into develop
2 parents f3a8e68 + 60e4079 commit 2690ada

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Table of Contents
5757

5858
Installation
5959
======
60-
Requirements: geth (1.6.5 or higher recommended, 1.6.0 or lower for whisper support), node (6.9.1 or higher is recommended) and npm
60+
Requirements: geth (1.6.5 or higher recommended, 1.6.0 or lower for whisper v1 support; whisper v5 support coming soon), node (6.9.1 or higher is recommended) and npm
6161
Optional: testrpc (3.0 or higher) if using the simulator or the test functionality.
6262
Further: depending on the dapp stack you choose: [IPFS](https://ipfs.io/)
6363

boilerplate/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",

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

demo/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",

lib/core/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Config.prototype.loadContractsConfigFile = function() {
7979
var configObject = {
8080
"versions": {
8181
"web3.js": "0.19.1",
82-
"solc": "0.4.18"
82+
"solc": "0.4.17"
8383
},
8484
"deployment": {
8585
"host": "localhost",

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.17;
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.17;
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.17;
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.17;
22

33
library ZAMyLib {
44

0 commit comments

Comments
 (0)