update to solc 0.4.6

This commit is contained in:
Iuri Matias 2016-12-02 07:06:04 -05:00
parent 910cee5431
commit 4002856f89
5 changed files with 7 additions and 6 deletions

View File

@ -1,4 +1,4 @@
pragma solidity ^0.4.2;
pragma solidity ^0.4.6;
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.0",
"solc": "^0.4.6",
"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.2;
pragma solidity ^0.4.6;
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.2;
pragma solidity ^0.4.6;
contract Token {
event Transfer(address indexed from, address indexed to, uint value);