Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pxrl committed Sep 24, 2024
1 parent 7717483 commit 5c2a4f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/relayer/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export async function runRelayer(_logger: winston.Logger, baseSigner: Signer): P

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

return isUpdated;
})
.map((spokePoolClient) => [spokePoolClient.chainId, spokePoolClient])
})
.map((spokePoolClient) => [spokePoolClient.chainId, spokePoolClient])
);
logger.warn({ at: "Relayer#run", message: "Proceeding without some SpokePools", droppedSpokePools });
}
Expand Down

0 comments on commit 5c2a4f7

Please sign in to comment.