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 8e40673
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions contracts/presets/ERC20PresetFixedSupply.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.2;

import "../token/ERC20/ERC20.sol";
import "../token/ERC20/ERC20Burnable.sol";

/**
Expand All @@ -10,7 +9,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 8e40673

Please sign in to comment.