update solc + specs

This commit is contained in:
Iuri Matias 2017-01-06 21:48:38 -05:00
parent 4002856f89
commit 6d369cd452
5 changed files with 6 additions and 6 deletions

View File

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

View File

@ -26,7 +26,7 @@
"merge": "^1.2.0",
"meteor-build-client": "^0.1.6",
"mkdirp": "^0.5.1",
"solc": "^0.4.6",
"solc": "^0.4.7",
"read-yaml": "^1.0.0",
"request": "^2.75.0",
"serve-static": "^1.11.1",

File diff suppressed because one or more lines are too long

View File

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

View File

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