Skip to content

Commit

Permalink
Merge pull request #108 from barajeel/patch-1
Browse files Browse the repository at this point in the history
chore: Remove unnecessary Number conversion for dstChain
  • Loading branch information
jackchuma authored Feb 22, 2025
2 parents cd3429a + d1652f4 commit 7031c59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/ts-filler/scripts/generateProof.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ async function main() {
throw new Error(`Invalid L1 Chain: ${config.l1}`);
}
if (!activeChains.dst) {
throw new Error(`Invalid Destination Chain: ${Number(config.dstChain)}`);
throw new Error(`Invalid Destination Chain: ${config.dstChain}`);
}

const configService = new ConfigService();
Expand Down

0 comments on commit 7031c59

Please sign in to comment.