Use address type

This commit is contained in:
Dora E. Mondrian
2017-10-23 03:08:30 -07:00
committed by GitHub
parent ca1babe1f7
commit e4427befbb

View File

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