Add Transfer event when token is minted to be fully ERC20 compliant &
tests
This commit is contained in:
@ -35,6 +35,7 @@ contract MintableToken is StandardToken, Ownable {
|
||||
totalSupply = totalSupply.add(_amount);
|
||||
balances[_to] = balances[_to].add(_amount);
|
||||
Mint(_to, _amount);
|
||||
Transfer(0x0, _to, _amount);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user