Skip to content

Commit

Permalink
Fix batcher crashing silently
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaceManiac committed Apr 4, 2024
1 parent cab8951 commit ec05b85
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/batcher/runtime/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,4 +189,7 @@ async function main(): Promise<void> {
await runtime.run(gameInputValidator, batchedTransactionPoster, provider);
}

void main();
main().catch(e => {
console.error(e);
process.exit(1);
});

0 comments on commit ec05b85

Please sign in to comment.