fix spacing

This commit is contained in:
Manuel Araoz
2016-10-18 14:49:03 -03:00
parent 6de19c59ae
commit e2861e7591
2 changed files with 30 additions and 30 deletions

View File

@ -9,14 +9,14 @@ import "../StandardToken.sol";
*/
contract SimpleToken is StandardToken {
string public name = "SimpleToken";
string public symbol = "SIM";
uint public decimals = 18;
uint public INITIAL_SUPPLY = 10000;
function SimpleToken() {
totalSupply = INITIAL_SUPPLY;
balances[msg.sender] = INITIAL_SUPPLY;
}
string public name = "SimpleToken";
string public symbol = "SIM";
uint public decimals = 18;
uint public INITIAL_SUPPLY = 10000;
function SimpleToken() {
totalSupply = INITIAL_SUPPLY;
balances[msg.sender] = INITIAL_SUPPLY;
}
}