contract BurnableToken is BasicToken
BurnableToken
Token that can be irreversibly burned (destroyed).
Events
event Burn(address indexed burner, uint256 value);Burns a specific amount of tokens.
function burn(uint256 _value) publicArguments
| Name | Type | Description |
|---|---|---|
| _value | uint256 | The amount of token to be burned. |
function _burn(address _who, uint256 _value) internalArguments
| Name | Type | Description |
|---|---|---|
| _who | address | |
| _value | uint256 |