Skip to content

Commit

Permalink
fix(config): Incorrect quoting on error message (#1242)
Browse files Browse the repository at this point in the history
  • Loading branch information
james-a-morris authored Mar 4, 2024
1 parent 8c307af commit 62f3f59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/Config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export class CommonConfig {
if (Object.keys(this.maxBlockLookBack).length > 0) {
assert(
Object.keys(this.maxBlockLookBack).includes(chainId.toString()),
"MAX_BLOCK_LOOK_BACK is missing chainId ${chainId}"
`MAX_BLOCK_LOOK_BACK is missing chainId ${chainId}`
);
}

Expand Down

0 comments on commit 62f3f59

Please sign in to comment.