Skip to content

Commit 7791cb7

Browse files
committed
lint
1 parent 62140bb commit 7791cb7

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,
@@ -94,7 +94,7 @@ function updateBundleFillsV3(
9494
lpFeePct: BigNumber,
9595
repaymentChainId: number,
9696
repaymentToken: string,
97-
repaymentAddress: string,
97+
repaymentAddress: string
9898
): void {
9999
// We shouldn't pass any unrepayable fills into this function, so we perform an extra safety check.
100100
assert(
@@ -370,7 +370,7 @@ export class BundleDataClient {
370370
fill,
371371
this.spokePoolClients[fill.destinationChainId].spokePool.provider,
372372
matchingDeposit,
373-
this.clients.hubPoolClient,
373+
this.clients.hubPoolClient
374374
);
375375
if (!isDefined(validRepayment)) {
376376
return false;
@@ -930,7 +930,7 @@ export class BundleDataClient {
930930
fill,
931931
destinationClient.spokePool.provider,
932932
v3RelayHashes[relayDataHash].deposits![0],
933-
this.clients.hubPoolClient,
933+
this.clients.hubPoolClient
934934
);
935935
if (!isDefined(fillToRefund)) {
936936
bundleUnrepayableFillsV3.push(fill);
@@ -1024,7 +1024,7 @@ export class BundleDataClient {
10241024
fill,
10251025
destinationClient.spokePool.provider,
10261026
matchedDeposit,
1027-
this.clients.hubPoolClient,
1027+
this.clients.hubPoolClient
10281028
);
10291029
if (!isDefined(fillToRefund)) {
10301030
bundleUnrepayableFillsV3.push(fill);
@@ -1195,7 +1195,7 @@ export class BundleDataClient {
11951195
fill,
11961196
destinationClient.spokePool.provider,
11971197
v3RelayHashes[relayDataHash].deposits![0],
1198-
this.clients.hubPoolClient,
1198+
this.clients.hubPoolClient
11991199
);
12001200
if (!isDefined(fillToRefund)) {
12011201
bundleUnrepayableFillsV3.push(fill);
@@ -1249,7 +1249,7 @@ export class BundleDataClient {
12491249
prefill!,
12501250
destinationClient.spokePool.provider,
12511251
deposit,
1252-
this.clients.hubPoolClient,
1252+
this.clients.hubPoolClient
12531253
);
12541254
if (!isDefined(verifiedFill)) {
12551255
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)