Skip to content

Commit a627060

Browse files
committed
Fixed compile errors after merge
1 parent 90a1dd8 commit a627060

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

packages/sequencer/src/protocol/production/tasks/CircuitCompilerTask.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,7 @@ export type CompiledCircuitsRecord = {
2121
runtimeCircuits: VKRecord;
2222
};
2323

24-
type VKRecordLite = Record<
25-
string,
26-
{ vk: { hash: string; data: string }; index: string }
27-
>;
24+
type VKRecordLite = Record<string, { vk: { hash: string; data: string } }>;
2825

2926
export class UndefinedSerializer implements TaskSerializer<undefined> {
3027
public toJSON(parameters: undefined): string {

packages/sequencer/src/protocol/production/tasks/StateTransitionTask.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import {
1818
ProofTaskSerializer,
1919
} from "../../../helpers/utils";
2020
import { TaskWorkerModule } from "../../../worker/worker/TaskWorkerModule";
21-
import { PreFilledWitnessProvider } from "../../../state/prefilled/PreFilledWitnessProvider";
2221
import { CompileRegistry } from "../helpers/CompileRegistry";
2322

2423
import {

0 commit comments

Comments
 (0)