Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
alexghr committed Dec 13, 2024
1 parent b6e7c10 commit 1da9b9d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
type ProofUri,
type ProvingJob,
type ProvingJobId,
ProvingJobStatus,
type ProvingJobStatus,
ProvingRequestType,
} from '@aztec/circuit-types';
import { randomBytes } from '@aztec/foundation/crypto';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
type ProvingJob,
type ProvingJobConsumer,
type ProvingJobFilter,
ProvingJobId,
type ProvingJobId,
type ProvingJobProducer,
type ProvingJobSettledResult,
type ProvingJobStatus,
Expand Down
3 changes: 2 additions & 1 deletion yarn-project/prover-node/src/prover-node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -261,8 +261,9 @@ export class ProverNode implements ClaimsMonitorHandler, EpochMonitorHandler, Pr
// Create a processor using the forked world state
const publicProcessorFactory = new PublicProcessorFactory(this.contractDataSource, this.telemetryClient);

const cleanUp = async () => {
const cleanUp = () => {
this.jobs.delete(job.getId());
return Promise.resolve();
};

const job = this.doCreateEpochProvingJob(epochNumber, blocks, publicProcessorFactory, cleanUp);
Expand Down

0 comments on commit 1da9b9d

Please sign in to comment.