File tree Expand file tree Collapse file tree 2 files changed +6
-14
lines changed
sequencer/src/worker/worker
stack/src/scripts/graphql Expand file tree Collapse file tree 2 files changed +6
-14
lines changed Original file line number Diff line number Diff line change @@ -153,14 +153,16 @@ export class VanillaTaskWorkerModules {
153
153
return {
154
154
StateTransitionTask : { } ,
155
155
RuntimeProvingTask : { } ,
156
- BlockProvingTask : { } ,
157
- BlockReductionTask : { } ,
156
+ TransactionProvingTask : { } ,
158
157
BlockBuildingTask : { } ,
158
+ BlockReductionTask : { } ,
159
159
StateTransitionReductionTask : { } ,
160
160
SettlementProvingTask : { } ,
161
161
CircuitCompilerTask : { } ,
162
162
WorkerRegistrationTask : { } ,
163
- } ;
163
+ } satisfies ModulesConfig <
164
+ ReturnType < typeof VanillaTaskWorkerModules . allTasks >
165
+ > ;
164
166
}
165
167
}
166
168
Original file line number Diff line number Diff line change @@ -210,17 +210,7 @@ export async function startServer() {
210
210
211
211
Mempool : { } ,
212
212
BatchProducerModule : { } ,
213
- LocalTaskWorkerModule : {
214
- StateTransitionTask : { } ,
215
- // SettlementProvingTask: {},
216
- BlockBuildingTask : { } ,
217
- BlockProvingTask : { } ,
218
- BlockReductionTask : { } ,
219
- RuntimeProvingTask : { } ,
220
- StateTransitionReductionTask : { } ,
221
- CircuitCompilerTask : { } ,
222
- WorkerRegistrationTask : { } ,
223
- } ,
213
+ LocalTaskWorkerModule : VanillaTaskWorkerModules . defaultConfig ( ) ,
224
214
BaseLayer : { } ,
225
215
TaskQueue : { } ,
226
216
You can’t perform that action at this time.
0 commit comments