Commit e4427bef by Dora E. Mondrian Committed by GitHub

Use address type

parent ca1babe1
...@@ -35,7 +35,7 @@ contract MintableToken is StandardToken, Ownable { ...@@ -35,7 +35,7 @@ contract MintableToken is StandardToken, Ownable {
totalSupply = totalSupply.add(_amount); totalSupply = totalSupply.add(_amount);
balances[_to] = balances[_to].add(_amount); balances[_to] = balances[_to].add(_amount);
Mint(_to, _amount); Mint(_to, _amount);
Transfer(0x0, _to, _amount); Transfer(address(0), _to, _amount);
return true; return true;
} }
......
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