Skip to content

Commit

Permalink
Update contracts to use solc 5
Browse files Browse the repository at this point in the history
  • Loading branch information
morrigan committed Apr 2, 2019
1 parent 4df7815 commit 6b6abf7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion contracts/Application.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity 0.4.24;
pragma solidity 0.5.7;


import "./Storage.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/Migrations.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity 0.4.24;
pragma solidity 0.5.7;


contract Migrations {
Expand Down
2 changes: 1 addition & 1 deletion contracts/Storage.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity 0.4.24;
pragma solidity 0.5.7;


contract Storage {
Expand Down
2 changes: 1 addition & 1 deletion truffle.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module.exports = {

compilers: {
solc: {
version: '0.4.24',
version: '0.5.7',
},
},

Expand Down

0 comments on commit 6b6abf7

Please sign in to comment.