Emit Trasnfer event on SimpleToken creation

This commit is contained in:
Facundo Spagnuolo
2018-01-09 12:25:50 -03:00
parent 59cd714b84
commit 17884e91a1
3 changed files with 50 additions and 0 deletions

View File

@ -24,6 +24,7 @@ contract SimpleToken is StandardToken {
function SimpleToken() public {
totalSupply = INITIAL_SUPPLY;
balances[msg.sender] = INITIAL_SUPPLY;
Transfer(0x0, msg.sender, INITIAL_SUPPLY);
}
}