Skip to content

Commit 7a8872d

Browse files
nicholaspaimrice32
authored andcommitted
lint
1 parent 3bb7a25 commit 7a8872d

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

src/clients/BundleDataClient/BundleDataClient.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import {
1818
Deposit,
1919
DepositWithBlock,
2020
} from "../../interfaces";
21-
import { AcrossConfigStoreClient, HubPoolClient, SpokePoolClient } from "..";
21+
import { AcrossConfigStoreClient, SpokePoolClient } from "..";
2222
import {
2323
BigNumber,
2424
bnZero,
@@ -91,7 +91,7 @@ function updateBundleFillsV3(
9191
lpFeePct: BigNumber,
9292
repaymentChainId: number,
9393
repaymentToken: string,
94-
repaymentAddress: string,
94+
repaymentAddress: string
9595
): void {
9696
// We shouldn't pass any unrepayable fills into this function, so we perform an extra safety check.
9797
assert(
@@ -355,7 +355,7 @@ export class BundleDataClient {
355355
fill,
356356
this.spokePoolClients[fill.destinationChainId].spokePool.provider,
357357
matchingDeposit,
358-
this.clients.hubPoolClient,
358+
this.clients.hubPoolClient
359359
);
360360
if (!isDefined(validRepayment)) {
361361
return false;
@@ -915,7 +915,7 @@ export class BundleDataClient {
915915
fill,
916916
destinationClient.spokePool.provider,
917917
v3RelayHashes[relayDataHash].deposits![0],
918-
this.clients.hubPoolClient,
918+
this.clients.hubPoolClient
919919
);
920920
if (!isDefined(fillToRefund)) {
921921
bundleUnrepayableFillsV3.push(fill);
@@ -1009,7 +1009,7 @@ export class BundleDataClient {
10091009
fill,
10101010
destinationClient.spokePool.provider,
10111011
matchedDeposit,
1012-
this.clients.hubPoolClient,
1012+
this.clients.hubPoolClient
10131013
);
10141014
if (!isDefined(fillToRefund)) {
10151015
bundleUnrepayableFillsV3.push(fill);
@@ -1183,7 +1183,7 @@ export class BundleDataClient {
11831183
fill,
11841184
destinationClient.spokePool.provider,
11851185
v3RelayHashes[relayDataHash].deposits![0],
1186-
this.clients.hubPoolClient,
1186+
this.clients.hubPoolClient
11871187
);
11881188
if (!isDefined(fillToRefund)) {
11891189
bundleUnrepayableFillsV3.push(fill);
@@ -1237,7 +1237,7 @@ export class BundleDataClient {
12371237
prefill!,
12381238
destinationClient.spokePool.provider,
12391239
deposit,
1240-
this.clients.hubPoolClient,
1240+
this.clients.hubPoolClient
12411241
);
12421242
if (!isDefined(verifiedFill)) {
12431243
bundleUnrepayableFillsV3.push(prefill!);

src/clients/BundleDataClient/utils/FillUtils.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ export async function verifyFillRepayment(
8585
return undefined;
8686
}
8787

88-
8988
// Case 1: Repayment chain is EVM and repayment address is valid EVM address.
9089
if (validEvmRepayment) {
9190
return fill;

0 commit comments

Comments
 (0)