add solidity pragma to demo and test contracts

This commit is contained in:
Iuri Matias 2016-10-22 18:04:45 -04:00
parent 4b1a16b100
commit 9e06656710
3 changed files with 3 additions and 0 deletions

View File

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

View File

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

View File

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