Skip to content

Commit

Permalink
fix: stop WorldStrateSynchronizer in prover node (#8126)
Browse files Browse the repository at this point in the history
Stop world state instance used by prover-node when node is shutdown
  • Loading branch information
alexghr authored and spalladino committed Aug 27, 2024
1 parent 7b8cc83 commit 845eb65
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions yarn-project/prover-node/src/prover-node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ export class ProverNode {
await this.l2BlockSource.stop();
this.publisher.interrupt();
this.jobs.forEach(job => job.stop());
await this.worldState.stop();
this.log.info('Stopped ProverNode');
}

Expand Down

0 comments on commit 845eb65

Please sign in to comment.