File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,9 @@ contract BurnToClaimDropERC721 is
48
48
Constructor + initializer logic
49
49
//////////////////////////////////////////////////////////////*/
50
50
51
- constructor (Extension[] memory _extensions ) BaseRouterWithDefaults (_extensions) {}
51
+ constructor (Extension[] memory _extensions ) BaseRouterWithDefaults (_extensions) {
52
+ _disableInitializers ();
53
+ }
52
54
53
55
/// @dev Initiliazes the contract, like a constructor.
54
56
function initialize (
Original file line number Diff line number Diff line change @@ -41,7 +41,9 @@ contract EvolvingNFT is
41
41
/// @dev Only MINTER_ROLE holders can sign off on `MintRequest`s.
42
42
bytes32 private constant EXTENSION_ROLE = keccak256 ("EXTENSION_ROLE " );
43
43
44
- constructor (Extension[] memory _extensions ) BaseRouterWithDefaults (_extensions) {}
44
+ constructor (Extension[] memory _extensions ) BaseRouterWithDefaults (_extensions) {
45
+ _disableInitializers ();
46
+ }
45
47
46
48
/// @dev Initiliazes the contract, like a constructor.
47
49
function initialize (
You can’t perform that action at this time.
0 commit comments