Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions solidity/security/erc721-arbitrary-transferfrom.sol
Original file line number Diff line number Diff line change
Expand Up @@ -1498,8 +1498,8 @@ contract Distortion is ERC721A, Ownable, ReentrancyGuard {


bool public isClaimActive = false;
uint public maxSupply = 1000;
uint public maxFree = 200;
uint public immutable maxSupply = 1000;
uint public constant maxFree = 200;
uint256 public price = 0.05 ether;
address payable private immutable payoutAddress;

Expand Down Expand Up @@ -2032,4 +2032,4 @@ library Base64 {

return string(result);
}
}
}