From 37c6782f9534804ca2d801d5b814b7799808d62f Mon Sep 17 00:00:00 2001 From: tatiesmars Date: Thu, 13 Apr 2017 14:23:41 +0800 Subject: [PATCH] Add MintFinished event to MintableToken #191 --- contracts/token/MintableToken.sol | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/contracts/token/MintableToken.sol b/contracts/token/MintableToken.sol index e3a5f8291..30235a815 100644 --- a/contracts/token/MintableToken.sol +++ b/contracts/token/MintableToken.sol @@ -18,6 +18,7 @@ import '../ownership/Ownable.sol'; contract MintableToken is StandardToken, Ownable { event Mint(address indexed to, uint value); + event MintFinished(); bool public mintingFinished = false; uint public totalSupply = 0; @@ -36,6 +37,7 @@ contract MintableToken is StandardToken, Ownable { function finishMinting() onlyOwner returns (bool) { mintingFinished = true; + MintFinished(); return true; } -} \ No newline at end of file +}