File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -69,6 +69,8 @@ contract SingleEditionMintable is
6969 // Global constructor for factory
7070 constructor (SharedNFTLogic _sharedNFTLogic ) {
7171 sharedNFTLogic = _sharedNFTLogic;
72+
73+ _disableInitializers ();
7274 }
7375
7476 /**
@@ -137,7 +139,7 @@ contract SingleEditionMintable is
137139 }
138140
139141 /**
140- @param _salePrice if sale price is 0 sale is stopped, otherwise that amount
142+ @param _salePrice if sale price is 0 sale is stopped, otherwise that amount
141143 of ETH is needed to start the sale.
142144 @dev This sets a simple ETH sales price
143145 Setting a sales price allows users to mint the edition until it sells out.
@@ -243,7 +245,7 @@ contract SingleEditionMintable is
243245
244246 /**
245247 @param tokenId Token ID to burn
246- User burn function for token id
248+ User burn function for token id
247249 */
248250 function burn (uint256 tokenId ) public {
249251 require (_isApprovedOrOwner (_msgSender (), tokenId), "Not approved " );
You can’t perform that action at this time.
0 commit comments