We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3655e9 commit d1c673eCopy full SHA for d1c673e
test/integration/oracle/ChainlinkOEVWrapperIntegration.t.sol
@@ -560,6 +560,16 @@ contract ChainlinkOEVWrapperIntegrationTest is
560
for (uint256 i = 0; i < wrappers.length; i++) {
561
ChainlinkOEVWrapper wrapper = wrappers[i];
562
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
+
573
// Get the collateral mToken
574
string memory mTokenKey = string(
575
abi.encodePacked("MOONWELL_", oracleConfigs[i].symbol)
0 commit comments