Unverified Commit ddcae625 by Francisco Giordano Committed by GitHub

Merge pull request #600 from izetex/fix/burnable-token-inheritance

Burnable Token should be inherited from Basic Token issue#596
parents 83b941c7 8375b608
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