Skip to content

Commit

Permalink
update ERC20PresetFixedSupply to inherit only ERC20Burnable
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwinYardi committed Nov 12, 2020
1 parent 54bd414 commit c76503e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/presets/ERC20PresetFixedSupply.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import "../token/ERC20/ERC20Burnable.sol";
* Tip: Contract is preconfigured with fixed initial supply.
* minting / pausing functionality is not supported. This removes the need of access control and thereby governance.
*/
contract ERC20PresetFixedSupply is ERC20, ERC20Burnable {
contract ERC20PresetFixedSupply is ERC20Burnable {
constructor(
string memory name,
string memory symbol,
Expand Down

0 comments on commit c76503e

Please sign in to comment.