Skip to content

Commit 73bd2df

Browse files
committed
downgrade to 0.4.17
1 parent 1cb0644 commit 73bd2df

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

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.11;
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.11;
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.7;
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.11;
1+
pragma solidity ^0.4.17;
22

33
library ZAMyLib {
44

test_app/app/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.17;
44
contract Token {
55

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

0 commit comments

Comments
 (0)