From e9ad355f90016218ec989c709ee7e62c94648a59 Mon Sep 17 00:00:00 2001 From: nicholaspai <9457025+nicholaspai@users.noreply.github.com> Date: Fri, 20 Dec 2024 13:48:42 -0500 Subject: [PATCH] improve: Remove unused gasMarkup parameter (#1958) --- src/clients/ProfitClient.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/clients/ProfitClient.ts b/src/clients/ProfitClient.ts index af085aad9..c3377acd4 100644 --- a/src/clients/ProfitClient.ts +++ b/src/clients/ProfitClient.ts @@ -660,8 +660,6 @@ export class ProfitClient { // Fallback to Coingecko's free API for now. // TODO: Add support for Coingecko Pro. const coingeckoProApiKey = undefined; - // TODO: Set this once we figure out gas markup on the API side. - const gasMarkup = 0; // Call the factory to create a new QueryBase instance. return relayFeeCalculator.QueryBase__factory.create( chainId, @@ -670,8 +668,7 @@ export class ProfitClient { undefined, // spokePoolAddress undefined, // simulatedRelayerAddress coingeckoProApiKey, - this.logger, - gasMarkup + this.logger ); } }