Commit fea2a838 by Manuel Aráoz Committed by GitHub

Merge pull request #256 from DavidKnott/refactor-mintable-token

Refactor MintableToken Contract
parents 3fbcb1b2 ffe464a4
......@@ -14,11 +14,10 @@ import '../ownership/Ownable.sol';
*/
contract MintableToken is StandardToken, Ownable {
event Mint(address indexed to, uint value);
event Mint(address indexed to, uint amount);
event MintFinished();
bool public mintingFinished = false;
uint public totalSupply = 0;
modifier canMint() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment