Skip to content

Commit

Permalink
remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeNervoXS committed Apr 25, 2024
1 parent 56ead8b commit 93deb78
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/dex/angle-transmuter/angle-transmuter-pool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,6 @@ export class AngleTransmuterEventPool extends ComposedEventSubscriber<PoolState>
} else if (oracleType == OracleReadType.MAX) {
price = feed.maxValue!;
} else if (oracleType == OracleReadType.MORPHO_ORACLE) {
console.log('config.oracles.morpho ', config.oracles.morpho);
const morphoOracleConfig = config.oracles.morpho[feed.morpho!.oracle];
const baseVaultPrice =
morphoOracleConfig.baseVault !== ethers.constants.AddressZero
Expand Down Expand Up @@ -810,7 +809,6 @@ export class AngleTransmuterEventPool extends ComposedEventSubscriber<PoolState>
),
)
: 1n;
console.log('steakUSDC price', price);
price = Number.parseFloat(
formatEther(
(morphoOracleConfig.scaleFactor *
Expand Down

0 comments on commit 93deb78

Please sign in to comment.