From ffe464a43ea44ffa4c48eed7c61b4331e5d6d09f Mon Sep 17 00:00:00 2001 From: David Knott Date: Wed, 14 Jun 2017 10:38:32 -0600 Subject: [PATCH] Refactors the Mintable Token contract --- contracts/token/MintableToken.sol | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/contracts/token/MintableToken.sol b/contracts/token/MintableToken.sol index 8f6dc751b..9e8b59308 100644 --- a/contracts/token/MintableToken.sol +++ b/contracts/token/MintableToken.sol @@ -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() {