Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/ProtocolV3TestBase.sol
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,8 @@ contract ProtocolV3TestBase is CommonTestBase {
configs[i].usageAsCollateralEnabled &&
// not stable borrowable as this makes testing stable borrowing unnecessary hard to reason about
!configs[i].stableBorrowRateEnabled &&
// LTV is higher than 15%
configs[i].ltv > 1500 &&
// supply cap not yet reached
((configs[i].supplyCap * 10 ** configs[i].decimals) >
IERC20(configs[i].aToken).totalSupply()) &&
Expand Down