From 82317f1e7103eba0a85477085b46e379002a8d23 Mon Sep 17 00:00:00 2001 From: Paul <108695806+pxrl@users.noreply.github.com> Date: Mon, 25 Mar 2024 20:33:36 +0100 Subject: [PATCH] lint --- src/relayer/Relayer.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/relayer/Relayer.ts b/src/relayer/Relayer.ts index 92c561552..bf7051293 100644 --- a/src/relayer/Relayer.ts +++ b/src/relayer/Relayer.ts @@ -1,4 +1,3 @@ -import assert from "assert"; import { utils as sdkUtils } from "@across-protocol/sdk-v2"; import { utils as ethersUtils } from "ethers"; import { L1Token, V3Deposit, V3DepositWithBlock } from "../interfaces"; @@ -374,7 +373,11 @@ export class Relayer { if (unfilledDeposits.length === 0) { return; } - await this.evaluateFills(unfilledDeposits.map(({ deposit }) => deposit), maxBlockNumbers, sendSlowRelays); + await this.evaluateFills( + unfilledDeposits.map(({ deposit }) => deposit), + maxBlockNumbers, + sendSlowRelays + ); }); // If during the execution run we had shortfalls or unprofitable fills then handel it by producing associated logs.