From 882a4bf69427fa0dc5f357f2f25ff1615f7d78df Mon Sep 17 00:00:00 2001 From: Vasilis Xouris Date: Tue, 3 Dec 2024 12:57:16 -0800 Subject: [PATCH] remove comments --- .../alpha-router/gas-models/tick-based-heuristic-gas-model.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/routers/alpha-router/gas-models/tick-based-heuristic-gas-model.ts b/src/routers/alpha-router/gas-models/tick-based-heuristic-gas-model.ts index 943efd433..569506836 100644 --- a/src/routers/alpha-router/gas-models/tick-based-heuristic-gas-model.ts +++ b/src/routers/alpha-router/gas-models/tick-based-heuristic-gas-model.ts @@ -195,18 +195,14 @@ export abstract class TickBasedHeuristicGasModelFactory< ? nativeAmountPool.token0Price : nativeAmountPool.token1Price; - // gasCostInTermsOfAmountToken = 29.487425 | 11.0 const gasCostInTermsOfAmountToken = nativeAndAmountTokenPrice.quote( - // nativeAndAmountTokenPrice = 3554.58 totalGasCostNativeCurrency ) as CurrencyAmount; // Convert gasCostInTermsOfAmountToken to quote token using execution price let syntheticGasCostInTermsOfQuoteToken: CurrencyAmount | null; try { - // syntheticGasCostInTermsOfQuoteToken = 29 | 19 | 11 syntheticGasCostInTermsOfQuoteToken = executionPrice.quote( - // executionPrice = 0.99 gasCostInTermsOfAmountToken ); } catch (err) {