Skip to content

Commit

Permalink
test: fix canForceRemoveMarket verif
Browse files Browse the repository at this point in the history
  • Loading branch information
MathisGD committed Aug 12, 2024
1 parent b06cbdc commit 5e71fa8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions certora/specs/Liveness.spec
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ rule canForceRemoveMarket(MetaMorphoHarness.MarketParams marketParams) {
requireInvariant timelockInRange();
// Safe require as it corresponds to some time very far into the future.
require e3.block.timestamp < 2^63;
// Safe require as it corresponds to some time very far into the past.
require e3.block.timestamp > 0;
submitMarketRemoval@withrevert(e3, marketParams);
assert !lastReverted;

Expand Down

0 comments on commit 5e71fa8

Please sign in to comment.