Changes to remove warnings

This commit is contained in:
Alejandro Santander
2017-11-23 10:41:18 -03:00
parent 0eaa5f50ac
commit b50391862c
20 changed files with 23 additions and 20 deletions

View File

@ -21,7 +21,7 @@ contract SimpleToken is StandardToken {
/**
* @dev Constructor that gives msg.sender all of existing tokens.
*/
function SimpleToken() {
function SimpleToken() public {
totalSupply = INITIAL_SUPPLY;
balances[msg.sender] = INITIAL_SUPPLY;
}