Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pxrl committed Mar 25, 2024
1 parent bc364a9 commit 82317f1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/relayer/Relayer.ts
Original file line number Diff line number Diff line change
@@ -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";
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit 82317f1

Please sign in to comment.