File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ export async function runRelayer(_logger: winston.Logger, baseSigner: Signer): P
74
74
75
75
// Some SpokePoolClients have not updated. Filter out the ones that are not updated to avoid upsetting the
76
76
// BundleDataClient.
77
- let droppedSpokePools : string [ ] = [ ] ;
77
+ const droppedSpokePools : string [ ] = [ ] ;
78
78
spokePoolClients = relayerClients . spokePoolClients = Object . fromEntries (
79
79
Object . values ( relayerClients . spokePoolClients )
80
80
. filter ( ( { chainId, isUpdated } ) => {
@@ -83,8 +83,8 @@ export async function runRelayer(_logger: winston.Logger, baseSigner: Signer): P
83
83
}
84
84
85
85
return isUpdated ;
86
- } )
87
- . map ( ( spokePoolClient ) => [ spokePoolClient . chainId , spokePoolClient ] )
86
+ } )
87
+ . map ( ( spokePoolClient ) => [ spokePoolClient . chainId , spokePoolClient ] )
88
88
) ;
89
89
logger . warn ( { at : "Relayer#run" , message : "Proceeding without some SpokePools" , droppedSpokePools } ) ;
90
90
}
You can’t perform that action at this time.
0 commit comments