Skip to content

Commit

Permalink
Pretty
Browse files Browse the repository at this point in the history
  • Loading branch information
pxrl committed Oct 1, 2024
1 parent 831af01 commit 30f8400
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/relayer/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export async function runRelayer(_logger: winston.Logger, baseSigner: Signer): P
const badChains = Object.values(spokePoolClients)
.filter(({ isUpdated }) => !isUpdated)
.map(({ chainId }) => getNetworkName(chainId));
throw new Error(`Unable to start relayer due to chains ${badChains}`);
throw new Error(`Unable to start relayer due to chains ${badChains.join(", ")}`);
}

// Signal to any existing relayer that a handover is underway, or alternatively
Expand Down

0 comments on commit 30f8400

Please sign in to comment.