From 07ef813537c244ebfe9035d71eb736a364a1d43e Mon Sep 17 00:00:00 2001 From: Alex Gherghisan Date: Mon, 29 Apr 2024 15:20:57 +0000 Subject: [PATCH] fix: use random id for proving jobs --- .../src/prover-pool/memory-proving-queue.ts | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/yarn-project/prover-client/src/prover-pool/memory-proving-queue.ts b/yarn-project/prover-client/src/prover-pool/memory-proving-queue.ts index c3e5194f0276..fc9505a1791d 100644 --- a/yarn-project/prover-client/src/prover-pool/memory-proving-queue.ts +++ b/yarn-project/prover-client/src/prover-pool/memory-proving-queue.ts @@ -8,19 +8,19 @@ import { type PublicKernelNonTailRequest, type PublicKernelTailRequest, } from '@aztec/circuit-types'; -import type { - BaseOrMergeRollupPublicInputs, - BaseParityInputs, - BaseRollupInputs, - KernelCircuitPublicInputs, - MergeRollupInputs, - NESTED_RECURSIVE_PROOF_LENGTH, - PublicKernelCircuitPublicInputs, - RECURSIVE_PROOF_LENGTH, - RootParityInput, - RootParityInputs, - RootRollupInputs, - RootRollupPublicInputs, +import { + type BaseOrMergeRollupPublicInputs, + type BaseParityInputs, + type BaseRollupInputs, + type KernelCircuitPublicInputs, + type MergeRollupInputs, + type NESTED_RECURSIVE_PROOF_LENGTH, + type PublicKernelCircuitPublicInputs, + type RECURSIVE_PROOF_LENGTH, + type RootParityInput, + type RootParityInputs, + type RootRollupInputs, + type RootRollupPublicInputs, } from '@aztec/circuits.js'; import { AbortedError, TimeoutError } from '@aztec/foundation/error'; import { MemoryFifo } from '@aztec/foundation/fifo';