Commit 8375b608 by astudnev

Burnable Token should be inherited from Basic Token issue#596

parent 83b941c7
pragma solidity ^0.4.18;
import './StandardToken.sol';
import './BasicToken.sol';
/**
* @title Burnable Token
* @dev Token that can be irreversibly burned (destroyed).
*/
contract BurnableToken is StandardToken {
contract BurnableToken is BasicToken {
event Burn(address indexed burner, uint256 value);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment