diff --git a/src/components/CollateralSelector/index.tsx b/src/components/CollateralSelector/index.tsx index 5e3464e..8ccf122 100644 --- a/src/components/CollateralSelector/index.tsx +++ b/src/components/CollateralSelector/index.tsx @@ -52,7 +52,6 @@ export const CollateralSelector = (props: { const market = cache.get(props.reserve?.lendingMarket) as ParsedAccount< LendingMarket >; - debugger; if (!market) return null; const quoteMintAddress = market?.info?.quoteMint?.toBase58(); diff --git a/src/utils/pools.ts b/src/utils/pools.ts index f3ade1e..367d7ca 100644 --- a/src/utils/pools.ts +++ b/src/utils/pools.ts @@ -286,7 +286,6 @@ export async function calculateDependentAmount( const constantPrice = pool.raw?.data?.curve?.constantPrice; if (constantPrice) { - debugger; depAdjustedAmount = (amount * depPrecision) / constantPrice.token_b_price; } else { switch (+op) {