From a075afcc0eeb9a809e0a71bcce6475d74a0e2991 Mon Sep 17 00:00:00 2001 From: Vectorized Date: Fri, 2 Feb 2024 02:58:14 +0000 Subject: [PATCH] Lint --- contracts/ERC721A.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/ERC721A.sol b/contracts/ERC721A.sol index b34d8552..98fff4ea 100644 --- a/contracts/ERC721A.sol +++ b/contracts/ERC721A.sol @@ -515,8 +515,8 @@ contract ERC721A is IERC721A { */ function _exists(uint256 tokenId) internal view virtual returns (bool result) { if (_startTokenId() <= tokenId) { - if (_sequentialUpTo() != type(uint256).max && tokenId > _sequentialUpTo()) - return _packedOwnershipExists(_packedOwnerships[tokenId]); + if (_sequentialUpTo() != type(uint256).max) + if (tokenId > _sequentialUpTo()) return _packedOwnershipExists(_packedOwnerships[tokenId]); if (tokenId < _currentIndex) { uint256 packed;