fix bug in DetailedPremintedToken

This commit is contained in:
Francisco Giordano
2018-05-21 15:21:19 -03:00
parent 2ce67a25ef
commit acd34a9372

View File

@ -22,6 +22,7 @@ contract DetailedPremintedToken is Migratable, DetailedERC20, StandardToken {
}
function _premint(address _to, uint256 _value) internal {
totalSupply_ += _value;
balances[_to] += _value;
emit Transfer(0, _to, _value);
}