@@ -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 ,
@@ -91,7 +91,7 @@ function updateBundleFillsV3(
91
91
lpFeePct : BigNumber ,
92
92
repaymentChainId : number ,
93
93
repaymentToken : string ,
94
- repaymentAddress : string ,
94
+ repaymentAddress : string
95
95
) : void {
96
96
// We shouldn't pass any unrepayable fills into this function, so we perform an extra safety check.
97
97
assert (
@@ -355,7 +355,7 @@ export class BundleDataClient {
355
355
fill ,
356
356
this . spokePoolClients [ fill . destinationChainId ] . spokePool . provider ,
357
357
matchingDeposit ,
358
- this . clients . hubPoolClient ,
358
+ this . clients . hubPoolClient
359
359
) ;
360
360
if ( ! isDefined ( validRepayment ) ) {
361
361
return false ;
@@ -915,7 +915,7 @@ export class BundleDataClient {
915
915
fill ,
916
916
destinationClient . spokePool . provider ,
917
917
v3RelayHashes [ relayDataHash ] . deposits ! [ 0 ] ,
918
- this . clients . hubPoolClient ,
918
+ this . clients . hubPoolClient
919
919
) ;
920
920
if ( ! isDefined ( fillToRefund ) ) {
921
921
bundleUnrepayableFillsV3 . push ( fill ) ;
@@ -1009,7 +1009,7 @@ export class BundleDataClient {
1009
1009
fill ,
1010
1010
destinationClient . spokePool . provider ,
1011
1011
matchedDeposit ,
1012
- this . clients . hubPoolClient ,
1012
+ this . clients . hubPoolClient
1013
1013
) ;
1014
1014
if ( ! isDefined ( fillToRefund ) ) {
1015
1015
bundleUnrepayableFillsV3 . push ( fill ) ;
@@ -1183,7 +1183,7 @@ export class BundleDataClient {
1183
1183
fill ,
1184
1184
destinationClient . spokePool . provider ,
1185
1185
v3RelayHashes [ relayDataHash ] . deposits ! [ 0 ] ,
1186
- this . clients . hubPoolClient ,
1186
+ this . clients . hubPoolClient
1187
1187
) ;
1188
1188
if ( ! isDefined ( fillToRefund ) ) {
1189
1189
bundleUnrepayableFillsV3 . push ( fill ) ;
@@ -1237,7 +1237,7 @@ export class BundleDataClient {
1237
1237
prefill ! ,
1238
1238
destinationClient . spokePool . provider ,
1239
1239
deposit ,
1240
- this . clients . hubPoolClient ,
1240
+ this . clients . hubPoolClient
1241
1241
) ;
1242
1242
if ( ! isDefined ( verifiedFill ) ) {
1243
1243
bundleUnrepayableFillsV3 . push ( prefill ! ) ;
0 commit comments