123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- pragma solidity ^0.4.24;
- import "./StandardToken.sol";
- /**
- * @title Burnable Token
- * @dev Token that can be irreversibly burned (destroyed).
- */
- contract BurnableToken is StandardToken {
- event Burn(address indexed burner, uint256 value);
- /**
- * @dev Burns a specific amount of tokens.
- * @param _value The amount of token to be burned.
- */
- function burn(uint256 _value) public {
- _burn(msg.sender, _value);
- }
- /**
- * @dev Burns a specific amount of tokens from the target address and decrements allowance
- * @param _from address The address which you want to send tokens from
- * @param _value uint256 The amount of token to be burned
- */
- function burnFrom(address _from, uint256 _value) public {
- require(_value <= allowed[_from][msg.sender]);
- // Should https://github.com/OpenZeppelin/zeppelin-solidity/issues/707 be accepted,
- // this function needs to emit an event with the updated approval.
- allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
- _burn(_from, _value);
- }
- function _burn(address _who, uint256 _value) internal {
- require(_value <= balances[_who]);
- // no need to require value <= totalSupply, since that would imply the
- // sender's balance is greater than the totalSupply, which *should* be an assertion failure
- balances[_who] = balances[_who].sub(_value);
- totalSupply_ = totalSupply_.sub(_value);
- emit Burn(_who, _value);
- emit Transfer(_who, address(0), _value);
- }
- }
|