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
4848 Constructor + initializer logic
4949 //////////////////////////////////////////////////////////////*/
5050
51- constructor (Extension[] memory _extensions ) BaseRouterWithDefaults (_extensions) {}
51+ constructor (Extension[] memory _extensions ) BaseRouterWithDefaults (_extensions) {
52+ _disableInitializers ();
53+ }
5254
5355 /// @dev Initiliazes the contract, like a constructor.
5456 function initialize (
Original file line number Diff line number Diff line change @@ -41,7 +41,9 @@ contract EvolvingNFT is
4141 /// @dev Only MINTER_ROLE holders can sign off on `MintRequest`s.
4242 bytes32 private constant EXTENSION_ROLE = keccak256 ("EXTENSION_ROLE " );
4343
44- constructor (Extension[] memory _extensions ) BaseRouterWithDefaults (_extensions) {}
44+ constructor (Extension[] memory _extensions ) BaseRouterWithDefaults (_extensions) {
45+ _disableInitializers ();
46+ }
4547
4648 /// @dev Initiliazes the contract, like a constructor.
4749 function initialize (
You can’t perform that action at this time.
0 commit comments