Skip to content

Commit 092221b

Browse files
committed
fix: rule instead of invariant
1 parent 6e4995b commit 092221b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

certora/specs/AllocationMorphoMarketV1AdapterV2.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ rule allocationAfterAllocate(env e, bytes data, uint256 assets) {
9494

9595
MorphoHarness.MarketParams marketParams = Utils.decodeMarketParams(data);
9696
uint256 expected = MorphoMarketV1AdapterV2.expectedSupplyAssets(e, Utils.id(marketParams));
97-
require expected < 2 ^ 128, "see expectedSupplyAssetsIsBounded invariant";
97+
require expected < 2 ^ 128, "see rule expectedSupplyAssetsIsBounded";
9898

9999
assert MorphoMarketV1AdapterV2.allocation(marketParams) == expected;
100100
}
@@ -132,7 +132,7 @@ rule allocationAfterDeallocate(env e, bytes data, uint256 assets) {
132132

133133
MorphoHarness.MarketParams marketParams = Utils.decodeMarketParams(data);
134134
uint256 expected = MorphoMarketV1AdapterV2.expectedSupplyAssets(e, Utils.id(marketParams));
135-
require expected < 2 ^ 128, "see expectedSupplyAssetsIsBounded invariant";
135+
require expected < 2 ^ 128, "see rule expectedSupplyAssetsIsBounded";
136136

137137
assert MorphoMarketV1AdapterV2.allocation(marketParams) == expected;
138138
}

0 commit comments

Comments
 (0)