Skip to content

Commit

Permalink
Removing unrequired _burn() override (#1373)
Browse files Browse the repository at this point in the history
* signing prefix added

* Minor improvement

* Tests changed

* Successfully tested

* Minor improvements

* Minor improvements

* Revert "Dangling commas are now required. (#1359)"

This reverts commit a688977.

* updates

* fixes #1371

* Removed extra whitespace

(cherry picked from commit f3888bb)
  • Loading branch information
Aniket-Engg authored and nventuro committed Oct 4, 2018
1 parent 7c98496 commit 38ca422
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions contracts/token/ERC20/ERC20Burnable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,4 @@ contract ERC20Burnable is ERC20 {
function burnFrom(address from, uint256 value) public {
_burnFrom(from, value);
}

/**
* @dev Overrides ERC20._burn in order for burn and burnFrom to emit
* an additional Burn event.
*/
function _burn(address who, uint256 value) internal {
super._burn(who, value);
}
}

0 comments on commit 38ca422

Please sign in to comment.