From ff4298d0d73a2870b43d6314e91c258d5a51c91f Mon Sep 17 00:00:00 2001 From: Dhruv Chauhan Date: Mon, 19 Aug 2024 14:33:25 +0530 Subject: [PATCH] nit: fix lint --- subgraphs/slisbnb/src/mappings/helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subgraphs/slisbnb/src/mappings/helpers.ts b/subgraphs/slisbnb/src/mappings/helpers.ts index b19dae870f..b5158f36ce 100644 --- a/subgraphs/slisbnb/src/mappings/helpers.ts +++ b/subgraphs/slisbnb/src/mappings/helpers.ts @@ -19,7 +19,7 @@ export class PricedTokenParams { export function getUpdatedPricedToken(tokenAddr: Address): PricedTokenParams { let pricedToken = tokenAddr; - let multiplier = BIGDECIMAL_ONE; + const multiplier = BIGDECIMAL_ONE; let changed = false; const network = dataSource.network().toUpperCase().replace("-", "_");