Skip to content

Commit

Permalink
Changed assertion message
Browse files Browse the repository at this point in the history
  • Loading branch information
ischasny committed Oct 30, 2024
1 parent 72a3e8e commit 4c69685
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion l2-contracts/contracts/dev-contracts/TimestampAsserter.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ interface ITimestampAsserter {

contract TimestampAsserter is ITimestampAsserter {
function assertTimestampInRange(uint256 start, uint256 end) public view {
require(start < block.timestamp && end > block.timestamp, "Timestamp is out of range");
require(start < block.timestamp && end > block.timestamp, "Block timestamp is out of range");
}
}

0 comments on commit 4c69685

Please sign in to comment.