From ab8b298c95981738f7d082571d5239f7911c5ad0 Mon Sep 17 00:00:00 2001 From: Paul <108695806+pxrl@users.noreply.github.com> Date: Thu, 21 Mar 2024 23:27:03 +0100 Subject: [PATCH] lint --- src/relayer/Relayer.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/relayer/Relayer.ts b/src/relayer/Relayer.ts index 23c9382ff..b98e24385 100644 --- a/src/relayer/Relayer.ts +++ b/src/relayer/Relayer.ts @@ -258,7 +258,9 @@ export class Relayer { // Fetch unfilled deposits and filter out deposits upfront before we compute the minimum deposit confirmation // per chain, which is based on the deposit volume we could fill. const unfilledDeposits = await this._getUnfilledDeposits(); - const allUnfilledDeposits = Object.values(unfilledDeposits).flat().map(({ deposit }) => deposit); + const allUnfilledDeposits = Object.values(unfilledDeposits) + .flat() + .map(({ deposit }) => deposit); this.logger.debug({ at: "Relayer#checkForUnfilledDepositsAndFill", message: `${allUnfilledDeposits.length} unfilled deposits found.`,