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 @@ -98,15 +98,15 @@ contract NFT is ERC721Enumerable, Ownable {
98
98
}
99
99
100
100
//only owner
101
- function reveal () public onlyOwner () {
101
+ function reveal () public onlyOwner {
102
102
revealed = true ;
103
103
}
104
104
105
- function setCost (uint256 _newCost ) public onlyOwner () {
105
+ function setCost (uint256 _newCost ) public onlyOwner {
106
106
cost = _newCost;
107
107
}
108
108
109
- function setmaxMintAmount (uint256 _newmaxMintAmount ) public onlyOwner () {
109
+ function setmaxMintAmount (uint256 _newmaxMintAmount ) public onlyOwner {
110
110
maxMintAmount = _newmaxMintAmount;
111
111
}
112
112
@@ -130,4 +130,4 @@ contract NFT is ERC721Enumerable, Ownable {
130
130
(bool success , ) = payable (msg .sender ).call {value: address (this ).balance}("" );
131
131
require (success);
132
132
}
133
- }
133
+ }
You can’t perform that action at this time.
0 commit comments