removed comment
This commit is contained in:
parent
9d40d9d807
commit
20b5833785
|
|
@ -25,7 +25,6 @@ contract SitesNFTs is ERC721URIStorage, AccessControl {
|
||||||
_setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
|
_setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Token uri is the Base64 encoded json metadata
|
|
||||||
function mint(string memory base64EncodedMetadata, address account) public canMint() returns (uint256) {
|
function mint(string memory base64EncodedMetadata, address account) public canMint() returns (uint256) {
|
||||||
uint256 newItemId = _tokenIds.current();
|
uint256 newItemId = _tokenIds.current();
|
||||||
_safeMint(account, newItemId);
|
_safeMint(account, newItemId);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue