add solidity pragma to demo and test contracts
This commit is contained in:
parent
4b1a16b100
commit
9e06656710
|
@ -1,3 +1,4 @@
|
|||
pragma solidity ^0.4.2;
|
||||
contract SimpleStorage {
|
||||
uint public storedData;
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
pragma solidity ^0.4.2;
|
||||
contract SimpleStorage {
|
||||
uint public storedData;
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue