Skip to content

Commit

Permalink
Merge pull request #333 from frangio/examples
Browse files Browse the repository at this point in the history
Move examples to separate directory
  • Loading branch information
frangio authored Jul 26, 2017
2 parents 91e5a92 + a799d21 commit de0e6ba
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pragma solidity ^0.4.11;


import "./StandardToken.sol";
import "../token/StandardToken.sol";


/**
Expand All @@ -12,10 +12,11 @@ import "./StandardToken.sol";
*/
contract SimpleToken is StandardToken {

string public name = "SimpleToken";
string public symbol = "SIM";
uint256 public decimals = 18;
uint256 public INITIAL_SUPPLY = 10000;
string public constant name = "SimpleToken";
string public constant symbol = "SIM";
uint256 public constant decimals = 18;

uint256 public constant INITIAL_SUPPLY = 10000;

/**
* @dev Contructor that gives msg.sender all of existing tokens.
Expand Down

0 comments on commit de0e6ba

Please sign in to comment.