Skip to content

Commit d1c673e

Browse files
committed
skip cbETH for now
1 parent f3655e9 commit d1c673e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

test/integration/oracle/ChainlinkOEVWrapperIntegration.t.sol

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -560,6 +560,16 @@ contract ChainlinkOEVWrapperIntegrationTest is
560560
for (uint256 i = 0; i < wrappers.length; i++) {
561561
ChainlinkOEVWrapper wrapper = wrappers[i];
562562

563+
if (
564+
keccak256(abi.encodePacked(oracleConfigs[i].symbol)) ==
565+
keccak256(abi.encodePacked("cbETH"))
566+
) {
567+
console2.log(
568+
"Skipping cbETH wrapper due to borrow liquidity issues"
569+
);
570+
continue;
571+
}
572+
563573
// Get the collateral mToken
564574
string memory mTokenKey = string(
565575
abi.encodePacked("MOONWELL_", oracleConfigs[i].symbol)

0 commit comments

Comments
 (0)