Skip to content

Commit 5c2a4f7

Browse files
committed
lint
1 parent 7717483 commit 5c2a4f7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/relayer/index.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export async function runRelayer(_logger: winston.Logger, baseSigner: Signer): P
7474

7575
// Some SpokePoolClients have not updated. Filter out the ones that are not updated to avoid upsetting the
7676
// BundleDataClient.
77-
let droppedSpokePools: string[] = [];
77+
const droppedSpokePools: string[] = [];
7878
spokePoolClients = relayerClients.spokePoolClients = Object.fromEntries(
7979
Object.values(relayerClients.spokePoolClients)
8080
.filter(({ chainId, isUpdated }) => {
@@ -83,8 +83,8 @@ export async function runRelayer(_logger: winston.Logger, baseSigner: Signer): P
8383
}
8484

8585
return isUpdated;
86-
})
87-
.map((spokePoolClient) => [spokePoolClient.chainId, spokePoolClient])
86+
})
87+
.map((spokePoolClient) => [spokePoolClient.chainId, spokePoolClient])
8888
);
8989
logger.warn({ at: "Relayer#run", message: "Proceeding without some SpokePools", droppedSpokePools });
9090
}

0 commit comments

Comments
 (0)