Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
dohaki committed Nov 8, 2024
1 parent ceca744 commit 125323c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/swap-quote.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
validateChainAndTokenParams,
isSwapRouteEnabled,
} from "./_utils";
// import { getUniswapQuoteForOriginSwapExactInput } from "./_dexes/uniswap";
import { getUniswapQuoteForOriginSwapExactInput } from "./_dexes/uniswap";
import { get1inchQuoteForOriginSwapExactInput } from "./_dexes/1inch";
import { InvalidParamError } from "./_errors";

Expand Down Expand Up @@ -109,7 +109,7 @@ const handler = async (
} as const;

const quoteResults = await Promise.allSettled([
// getUniswapQuoteForOriginSwapExactInput(swap),
getUniswapQuoteForOriginSwapExactInput(swap),
get1inchQuoteForOriginSwapExactInput(swap),
]);

Expand Down

0 comments on commit 125323c

Please sign in to comment.