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';