Merge branch 'next' into develop

This commit is contained in:
Iuri Matias 2017-10-22 09:47:11 -04:00
commit 2690ada62d
12 changed files with 12 additions and 12 deletions

View File

@ -57,7 +57,7 @@ Table of Contents
Installation
======
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
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
Optional: testrpc (3.0 or higher) if using the simulator or the test functionality.
Further: depending on the dapp stack you choose: [IPFS](https://ipfs.io/)

View File

@ -2,7 +2,7 @@
"default": {
"versions": {
"web3.js": "1.0.0-beta",
"solc": "0.4.18"
"solc": "0.4.17"
},
"deployment": {
"host": "localhost",

View File

@ -1,4 +1,4 @@
pragma solidity ^0.4.18;
pragma solidity ^0.4.7;
contract SimpleStorage {
uint public storedData;

View File

@ -2,7 +2,7 @@
"default": {
"versions": {
"web3.js": "1.0.0-beta",
"solc": "0.4.18"
"solc": "0.4.17"
},
"deployment": {
"host": "localhost",

View File

@ -79,7 +79,7 @@ Config.prototype.loadContractsConfigFile = function() {
var configObject = {
"versions": {
"web3.js": "0.19.1",
"solc": "0.4.18"
"solc": "0.4.17"
},
"deployment": {
"host": "localhost",

View File

@ -33,7 +33,7 @@
"promptly": "^2.1.0",
"serve-static": "^1.11.1",
"shelljs": "^0.5.0",
"solc": "0.4.18",
"solc": "0.4.17",
"tar": "^3.1.5",
"toposort": "^1.0.0",
"underscore": "^1.8.3",

View File

@ -1,4 +1,4 @@
pragma solidity ^0.4.18;
pragma solidity ^0.4.17;
contract AnotherStorage {
address public simpleStorageAddress;
address simpleStorageAddress2;

View File

@ -1,4 +1,4 @@
pragma solidity ^0.4.18;
pragma solidity ^0.4.17;
/**
* @title Ownable

View File

@ -1,4 +1,4 @@
pragma solidity ^0.4.18;
pragma solidity ^0.4.17;
import "ownable.sol";

View File

@ -1,4 +1,4 @@
pragma solidity ^0.4.18;
pragma solidity ^0.4.17;
library ZAMyLib {

View File

@ -1,6 +1,6 @@
// https://github.com/nexusdev/erc20/blob/master/contracts/base.sol
pragma solidity ^0.4.18;
pragma solidity ^0.4.17;
contract Token {
event Transfer(address indexed from, address indexed to, uint value);

View File

@ -2,7 +2,7 @@
"default": {
"versions": {
"web3.js": "1.0.0-beta",
"solc": "0.4.18"
"solc": "0.4.17"
},
"deployment": {
"host": "localhost",