See exerpt below:
[+] Survivors
Mutation:
File: /home/.../Contract.sol
Line nr: 495
Result: Lived
Original line:
@notice Update the times for start, stop and uncap.
Mutated line:
@notice Update the times fo < art, stop and uncap.
Relevant code in my contract:
/**
@notice Update the times for start, stop and uncap.
@dev The start time cannot be changed if people already contributed. No time can be changed if the deal is over.
@param startTimestamp Timestamp when the deal opens to investors
@param endTimestamp Timestamp when the deal closes to investors
@param uncapTimestamp Timestamp when the maxAlloc personal cap stops being enforced
@param _publicTimestamp Timestamp when the whitelist stops being enforced. Set to `endTimestamp` to always enable,
set to zero to always disable.
*/
function updateTimestamps(
uint256 startTimestamp,
uint256 endTimestamp,
uint256 uncapTimestamp,
uint256 _publicTimestamp
) external onlyRole(ROLE_MANAGER) { /* ... */ }
See exerpt below:
Relevant code in my contract: