File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1312,15 +1312,15 @@ contract NFT is ERC721Enumerable, Ownable {
1312
1312
}
1313
1313
1314
1314
//only owner
1315
- function reveal () public onlyOwner () {
1315
+ function reveal () public onlyOwner {
1316
1316
revealed = true ;
1317
1317
}
1318
1318
1319
- function setCost (uint256 _newCost ) public onlyOwner () {
1319
+ function setCost (uint256 _newCost ) public onlyOwner {
1320
1320
cost = _newCost;
1321
1321
}
1322
1322
1323
- function setmaxMintAmount (uint256 _newmaxMintAmount ) public onlyOwner () {
1323
+ function setmaxMintAmount (uint256 _newmaxMintAmount ) public onlyOwner {
1324
1324
maxMintAmount = _newmaxMintAmount;
1325
1325
}
1326
1326
@@ -1344,4 +1344,4 @@ contract NFT is ERC721Enumerable, Ownable {
1344
1344
(bool success , ) = payable (msg .sender ).call {value: address (this ).balance}("" );
1345
1345
require (success);
1346
1346
}
1347
- }
1347
+ }
You can’t perform that action at this time.
0 commit comments