Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilWindle committed Apr 15, 2024
1 parent c907097 commit 8f6fc0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yarn-project/prover-client/src/orchestrator/orchestrator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ enum PROMISE_RESULT {
OPERATIONS,
}

const KernelTYpesWithoutFunctions: Set<PublicKernelType> = new Set<PublicKernelType>([
const KernelTypesWithoutFunctions: Set<PublicKernelType> = new Set<PublicKernelType>([
PublicKernelType.NON_PUBLIC,
PublicKernelType.TAIL,
]);
Expand Down Expand Up @@ -629,7 +629,7 @@ export class ProvingOrchestrator {
const publicFunction = txProvingState.getPublicFunctionState(functionIndex);

// Prove the VM if this is a kernel that requires one
if (!KernelTYpesWithoutFunctions.has(publicFunction.publicKernelRequest.type)) {
if (!KernelTypesWithoutFunctions.has(publicFunction.publicKernelRequest.type)) {
// Just sleep for a small amount of time
await sleep(Math.random() * 10 + 10);
logger.debug(`Proven VM for function index ${functionIndex} of tx index ${txIndex}`);
Expand Down

0 comments on commit 8f6fc0f

Please sign in to comment.