Skip to content

Commit

Permalink
upgrade pragma to 0.4.17, remove ^ from pragma, add public to constru…
Browse files Browse the repository at this point in the history
…ctor
  • Loading branch information
JaheMerah authored and agnesenvaite committed Oct 31, 2017
1 parent 8e8bb1f commit 07ec401
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Crowdsale.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity ^0.4.16;
pragma solidity 0.4.17;

import "./Ownable.sol";
import "./SafeMath.sol";
Expand All @@ -7,9 +7,11 @@ import "./SafeMath.sol";
/* Interface of GeeToken contract */
contract Token {

function transfer(address _to, uint256 _value) external;
function transfer(address _to, uint256 _value)
external;

function burn(uint256 _value) external;
function burn(uint256 _value)
external;

}

Expand Down Expand Up @@ -68,6 +70,7 @@ contract Crowdsale is Ownable {
//FUNCTION
//Payable - can store ETH
function Crowdsale(Token _geeToken)
public
notZeroAddress(_geeToken)
payable
{
Expand Down

0 comments on commit 07ec401

Please sign in to comment.