@@ -37,16 +37,17 @@ contract ERC721ATest is ERC721A {
37
37
|| _packedOwnerships[tokenId + 1 ] != 0 ;
38
38
}
39
39
40
+ /* this is no longer required since https://github.com/chiru-labs/ERC721A/pull/447
40
41
// inv5: the uninitialized token is not burned.
41
42
function inv5(uint tokenId) public view returns (bool) {
42
43
return !(_packedOwnerships[tokenId] == 0) || !isBurned(tokenId);
43
44
}
45
+ */
44
46
45
47
function testInvariant1 (uint tokenId , address addr1 , address addr2 , uint num , uint rand ) public { _testInvariant (inv1 (tokenId), addr1, addr2, num, rand); }
46
48
function testInvariant2 (uint tokenId , address addr1 , address addr2 , uint num , uint rand ) public { _testInvariant (inv2 (tokenId), addr1, addr2, num, rand); }
47
49
function testInvariant3 (uint tokenId , address addr1 , address addr2 , uint num , uint rand ) public { _testInvariant (inv3 (tokenId), addr1, addr2, num, rand); }
48
50
function testInvariant4 (uint tokenId , address addr1 , address addr2 , uint num , uint rand ) public { _testInvariant (inv4 (tokenId), addr1, addr2, num, rand); }
49
- function testInvariant5 (uint tokenId , address addr1 , address addr2 , uint num , uint rand ) public { _testInvariant (inv5 (tokenId), addr1, addr2, num, rand); }
50
51
51
52
function _testInvariant (
52
53
bool inv ,
@@ -171,7 +172,6 @@ contract ERC721ATest is ERC721A {
171
172
172
173
function testBurnRequirements (uint tokenId ) public {
173
174
require (inv2 (tokenId));
174
- require (inv5 (tokenId));
175
175
176
176
bool exist = _exists (tokenId);
177
177
bool burned = isBurned (tokenId);
@@ -268,7 +268,6 @@ contract ERC721ATest is ERC721A {
268
268
269
269
function testTransferRequirements (address from , address to , uint tokenId ) public {
270
270
require (inv2 (tokenId));
271
- require (inv5 (tokenId));
272
271
273
272
bool exist = _exists (tokenId);
274
273
bool burned = isBurned (tokenId);
0 commit comments