Skip to content

Commit 4002856

Browse files
committed
update to solc 0.4.6
1 parent 910cee5 commit 4002856

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
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.2;
1+
pragma solidity ^0.4.6;
22
contract SimpleStorage {
33
uint public storedData;
44

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"merge": "^1.2.0",
2727
"meteor-build-client": "^0.1.6",
2828
"mkdirp": "^0.5.1",
29-
"solc": "^0.4.0",
29+
"solc": "^0.4.6",
3030
"read-yaml": "^1.0.0",
3131
"request": "^2.75.0",
3232
"serve-static": "^1.11.1",

test/compiler.js

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/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.2;
1+
pragma solidity ^0.4.6;
22
contract SimpleStorage {
33
uint public storedData;
44

test/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.2;
3+
pragma solidity ^0.4.6;
44
contract Token {
55

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

0 commit comments

Comments
 (0)