Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ischasny committed Oct 16, 2024
1 parent 5dbdb7c commit 1f4018f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions l2-contracts/contracts/dev-contracts/TimestampAsserter.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ error TimestampOutOfRange();

contract TimestampAsserter is ITimestampAsserter {
function assertTimestampInRange(uint256 start, uint256 end) public view {
if (start > block.timestamp || end < block.timestamp)
revert TimestampOutOfRange();
if (start > block.timestamp || end < block.timestamp) revert TimestampOutOfRange();
}
}

0 comments on commit 1f4018f

Please sign in to comment.