- [x] 📈 This is a feature request. ## 🎉 Description As a user, I'd expect that BurnableToken when called `burn(uint _value)` method, it should fire `Transfer(msg.sender, address(0), value);` event. https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/contracts/token/ERC20/BurnableToken.sol#L18 the same as MintableToken does when it fires `mint(to, value)` https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/contracts/token/ERC20/MintableToken.sol#L35 ``` Transfer(address(0), _to, _amount); ``` Thoughts?