File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
contracts/trading/seaport16/zones/immutable-signed-zone/v3 Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -676,6 +676,7 @@ contract ImmutableSignedZoneV3 is
676676 }
677677
678678 // This zone assumes that either the first consideration item or the first offer item is an ERC721 or ERC1155 token.
679+ // slither-disable-next-line uninitialized-local
679680 address token;
680681 if (uint (zoneParameters.consideration[0 ].itemType) > 1 ) {
681682 token = zoneParameters.consideration[0 ].token;
@@ -727,7 +728,9 @@ contract ImmutableSignedZoneV3 is
727728 }
728729
729730 // This zone assumes that either the first consideration item or the first offer item is an ERC721 or ERC1155 token.
731+ // slither-disable-next-line uninitialized-local
730732 address token;
733+ // slither-disable-next-line uninitialized-local
731734 uint256 tokenId;
732735 if (uint (zoneParameters.consideration[0 ].itemType) > 1 ) {
733736 token = zoneParameters.consideration[0 ].token;
You can’t perform that action at this time.
0 commit comments