Skip to content

Commit

Permalink
Resolving Issues. ML-02 and ML-05
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffmega committed Apr 24, 2023
1 parent 8d4d87a commit 797bba0
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions ERC721A/MegaNFT.sol
Expand Up @@ -50,7 +50,6 @@ contract MegaNFT is Ownable, ERC721A {
require(_value >= price * _num, "Not enough ETH sent, check price");
}
require(_num > 0, "Number of NFTs must be greater than zero");
require(_value > 0, "Value must be greater than zero");
_;
}

Expand Down Expand Up @@ -134,7 +133,6 @@ contract MegaNFT is Ownable, ERC721A {
_exists(_tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
require(_tokenId != 0, "ERC721Metadata: token must not be 0");

string memory currentBaseURI = _baseURI();
return
Expand Down

0 comments on commit 797bba0

Please sign in to comment.