Add natspec to all remaing contracts, except for vestedToken.sol
This commit is contained in:
committed by
maurelian
parent
1547922b61
commit
f6f91298f0
@ -4,12 +4,12 @@ pragma solidity ^0.4.8;
|
||||
import "./StandardToken.sol";
|
||||
|
||||
|
||||
/*
|
||||
* SimpleToken
|
||||
/**
|
||||
* @title SimpleToken
|
||||
*
|
||||
* Very simple ERC20 Token example, where all tokens are pre-assigned
|
||||
* to the creator. Note they can later distribute these tokens
|
||||
* as they wish using `transfer` and other `StandardToken` functions.
|
||||
* @dev Very simple ERC20 Token example, where all tokens are pre-assigned
|
||||
to the creator. Note they can later distribute these tokens
|
||||
as they wish using `transfer` and other `StandardToken` functions.
|
||||
*/
|
||||
contract SimpleToken is StandardToken {
|
||||
|
||||
@ -17,7 +17,10 @@ contract SimpleToken is StandardToken {
|
||||
string public symbol = "SIM";
|
||||
uint public decimals = 18;
|
||||
uint public INITIAL_SUPPLY = 10000;
|
||||
|
||||
|
||||
/**
|
||||
* @dev Contructor that gives the msg.sender all of existing tokens.
|
||||
*/
|
||||
function SimpleToken() {
|
||||
totalSupply = INITIAL_SUPPLY;
|
||||
balances[msg.sender] = INITIAL_SUPPLY;
|
||||
|
||||
Reference in New Issue
Block a user