fix rebase conflict

This commit is contained in:
EmperorOrokuSaki 2022-12-15 21:12:25 +03:30
parent 6e036f3b9e
commit a4679036b2
1 changed files with 4 additions and 1 deletions

View File

@ -66,7 +66,10 @@ contract FleekERC721 is ERC721, FleekAccessControl {
) public payable requireCollectionOwner returns (uint256) { ) public payable requireCollectionOwner returns (uint256) {
uint256 tokenId = _tokenIds.current(); uint256 tokenId = _tokenIds.current();
_mint(to, tokenId); _mint(to, tokenId);
<<<<<<< HEAD
_addTokenController(tokenId, to); _addTokenController(tokenId, to);
=======
>>>>>>> 752bbb8 (refactor: change token controller role validation to _beforeTokenTransfer function)
_tokenIds.increment(); _tokenIds.increment();
App storage app = _apps[tokenId]; App storage app = _apps[tokenId];