@@ -18,7 +18,7 @@ import {
1818 Deposit ,
1919 DepositWithBlock ,
2020} from "../../interfaces" ;
21- import { AcrossConfigStoreClient , HubPoolClient , SpokePoolClient } from ".." ;
21+ import { AcrossConfigStoreClient , SpokePoolClient } from ".." ;
2222import {
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 ! ) ;
0 commit comments