Browse Source

Cleaned up code for rule transfersHaveSameLengthInputArrays (passing)

Thomas Adams 3 years ago
parent
commit
e4492aed8a
1 changed files with 1 additions and 2 deletions
  1. 1 2
      certora/specs/ERC1155Supply.spec

+ 1 - 2
certora/specs/ERC1155Supply.spec

@@ -117,9 +117,8 @@ rule transfersHaveSameLengthInputArrays {
 
 
     address holder; address recipient; bytes data;
     address holder; address recipient; bytes data;
     uint256[] tokens; uint256[] transferAmounts;
     uint256[] tokens; uint256[] transferAmounts;
-//    uint max_int = 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff;
     uint max_int = 0xffffffffffffffffffffffffffffffff;
     uint max_int = 0xffffffffffffffffffffffffffffffff;
-//    require tokens.length >= 0 && tokens.length <= type(uint128).max
+
     require tokens.length >= 0 && tokens.length <= max_int;
     require tokens.length >= 0 && tokens.length <= max_int;
     require transferAmounts.length >= 0 && transferAmounts.length <= max_int;
     require transferAmounts.length >= 0 && transferAmounts.length <= max_int;