Skip to content

Commit 3e3d7b8

Browse files
committed
Update Halmos tests for batched burn preparation
1 parent 0f21d22 commit 3e3d7b8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

halmos/ERC721A.t.sol

+2-3
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,17 @@ contract ERC721ATest is ERC721A {
3737
|| _packedOwnerships[tokenId + 1] != 0;
3838
}
3939

40+
/* this is no longer required since https://github.com/chiru-labs/ERC721A/pull/447
4041
// inv5: the uninitialized token is not burned.
4142
function inv5(uint tokenId) public view returns (bool) {
4243
return !(_packedOwnerships[tokenId] == 0) || !isBurned(tokenId);
4344
}
45+
*/
4446

4547
function testInvariant1(uint tokenId, address addr1, address addr2, uint num, uint rand) public { _testInvariant(inv1(tokenId), addr1, addr2, num, rand); }
4648
function testInvariant2(uint tokenId, address addr1, address addr2, uint num, uint rand) public { _testInvariant(inv2(tokenId), addr1, addr2, num, rand); }
4749
function testInvariant3(uint tokenId, address addr1, address addr2, uint num, uint rand) public { _testInvariant(inv3(tokenId), addr1, addr2, num, rand); }
4850
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); }
5051

5152
function _testInvariant(
5253
bool inv,
@@ -171,7 +172,6 @@ contract ERC721ATest is ERC721A {
171172

172173
function testBurnRequirements(uint tokenId) public {
173174
require(inv2(tokenId));
174-
require(inv5(tokenId));
175175

176176
bool exist = _exists(tokenId);
177177
bool burned = isBurned(tokenId);
@@ -268,7 +268,6 @@ contract ERC721ATest is ERC721A {
268268

269269
function testTransferRequirements(address from, address to, uint tokenId) public {
270270
require(inv2(tokenId));
271-
require(inv5(tokenId));
272271

273272
bool exist = _exists(tokenId);
274273
bool burned = isBurned(tokenId);

0 commit comments

Comments
 (0)