@@ -18,7 +18,7 @@ import {
18
18
Deposit ,
19
19
DepositWithBlock ,
20
20
} from "../../interfaces" ;
21
- import { AcrossConfigStoreClient , HubPoolClient , SpokePoolClient } from ".." ;
21
+ import { AcrossConfigStoreClient , SpokePoolClient } from ".." ;
22
22
import {
23
23
BigNumber ,
24
24
bnZero ,
@@ -94,7 +94,7 @@ function updateBundleFillsV3(
94
94
lpFeePct : BigNumber ,
95
95
repaymentChainId : number ,
96
96
repaymentToken : string ,
97
- repaymentAddress : string ,
97
+ repaymentAddress : string
98
98
) : void {
99
99
// We shouldn't pass any unrepayable fills into this function, so we perform an extra safety check.
100
100
assert (
@@ -370,7 +370,7 @@ export class BundleDataClient {
370
370
fill ,
371
371
this . spokePoolClients [ fill . destinationChainId ] . spokePool . provider ,
372
372
matchingDeposit ,
373
- this . clients . hubPoolClient ,
373
+ this . clients . hubPoolClient
374
374
) ;
375
375
if ( ! isDefined ( validRepayment ) ) {
376
376
return false ;
@@ -930,7 +930,7 @@ export class BundleDataClient {
930
930
fill ,
931
931
destinationClient . spokePool . provider ,
932
932
v3RelayHashes [ relayDataHash ] . deposits ! [ 0 ] ,
933
- this . clients . hubPoolClient ,
933
+ this . clients . hubPoolClient
934
934
) ;
935
935
if ( ! isDefined ( fillToRefund ) ) {
936
936
bundleUnrepayableFillsV3 . push ( fill ) ;
@@ -1024,7 +1024,7 @@ export class BundleDataClient {
1024
1024
fill ,
1025
1025
destinationClient . spokePool . provider ,
1026
1026
matchedDeposit ,
1027
- this . clients . hubPoolClient ,
1027
+ this . clients . hubPoolClient
1028
1028
) ;
1029
1029
if ( ! isDefined ( fillToRefund ) ) {
1030
1030
bundleUnrepayableFillsV3 . push ( fill ) ;
@@ -1195,7 +1195,7 @@ export class BundleDataClient {
1195
1195
fill ,
1196
1196
destinationClient . spokePool . provider ,
1197
1197
v3RelayHashes [ relayDataHash ] . deposits ! [ 0 ] ,
1198
- this . clients . hubPoolClient ,
1198
+ this . clients . hubPoolClient
1199
1199
) ;
1200
1200
if ( ! isDefined ( fillToRefund ) ) {
1201
1201
bundleUnrepayableFillsV3 . push ( fill ) ;
@@ -1249,7 +1249,7 @@ export class BundleDataClient {
1249
1249
prefill ! ,
1250
1250
destinationClient . spokePool . provider ,
1251
1251
deposit ,
1252
- this . clients . hubPoolClient ,
1252
+ this . clients . hubPoolClient
1253
1253
) ;
1254
1254
if ( ! isDefined ( verifiedFill ) ) {
1255
1255
bundleUnrepayableFillsV3 . push ( prefill ! ) ;
0 commit comments