From 890dbd4feb591f7bb4a9c38decd963d0256ceeb5 Mon Sep 17 00:00:00 2001 From: nicholaspai Date: Fri, 10 May 2024 15:10:01 -0400 Subject: [PATCH] Update InventoryClient.ts --- src/clients/InventoryClient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clients/InventoryClient.ts b/src/clients/InventoryClient.ts index 57d56ab4b..9539188ce 100644 --- a/src/clients/InventoryClient.ts +++ b/src/clients/InventoryClient.ts @@ -821,7 +821,7 @@ export class InventoryClient { for (const { l2Token, amount, targetPct, thresholdPct, cumulativeBalance, hash, chainId } of rebalances) { const tokenInfo = this.hubPoolClient.getTokenInfoForAddress(l2Token, chainId); if (!tokenInfo) { - `InventoryClient::rebalanceInventoryIfNeeded no token info for L2 token ${l2Token} on chain ${chainId}` + `InventoryClient::rebalanceInventoryIfNeeded no token info for L2 token ${l2Token} on chain ${chainId}`; } const { symbol, decimals } = tokenInfo; const formatter = createFormatFunction(2, 4, false, decimals);