Skip to content

Commit

Permalink
fix: more readable default expiration distance
Browse files Browse the repository at this point in the history
  • Loading branch information
marcomariscal committed Dec 16, 2024
1 parent 37fe9e1 commit 083ef5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion l2-contracts/test/ZkCappedMinterV2.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ contract ZkCappedMinterV2Test is ZkTokenTest {
super.setUp();

DEFAULT_START_TIME = uint48(vm.getBlockTimestamp());
DEFAULT_EXPIRATION_TIME = uint48(DEFAULT_START_TIME + 100_000_000);
DEFAULT_EXPIRATION_TIME = uint48(DEFAULT_START_TIME + 3 days);

cappedMinter = _createCappedMinter(cappedMinterAdmin, DEFAULT_CAP, DEFAULT_START_TIME, DEFAULT_EXPIRATION_TIME);

Expand Down

0 comments on commit 083ef5f

Please sign in to comment.