You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
flags.BoolVar(&unusedRetryEnabled, "retry-enabled", false, "[deprecated] whether to enable the retry mechanism at the access node level")
1518
1511
_=flags.MarkDeprecated("retry-enabled", "[deprecated] this flag is ignored and will be removed in a future release.")
1519
1512
1513
+
varunusedScheduledCallbacksEnabledbool
1514
+
flags.BoolVar(&unusedScheduledCallbacksEnabled, "scheduled-callbacks-enabled", false, "[deprecated] whether to include scheduled callback transactions in system collections.")
1515
+
_=flags.MarkDeprecated("scheduled-callbacks-enabled", "[deprecated] this flag is ignored and will be removed in a future release.")
flags.BoolVar(&exeConf.onflowOnlyLNs, "temp-onflow-only-lns", false, "do not use unless required. forces node to only request collections from onflow collection nodes")
146
146
flags.BoolVar(&exeConf.enableStorehouse, "enable-storehouse", false, "enable storehouse to store registers on disk, default is false")
147
147
flags.BoolVar(&exeConf.enableChecker, "enable-checker", true, "enable checker to check the correctness of the execution result, default is true")
148
-
flags.BoolVar(&exeConf.scheduleCallbacksEnabled, "scheduled-callbacks-enabled", fvm.DefaultScheduledCallbacksEnabled, "enable execution of scheduled callbacks")
148
+
flags.BoolVar(&exeConf.scheduleCallbacksEnabled, "scheduled-callbacks-enabled", fvm.DefaultScheduledTransactionsEnabled, "[deprecated] enable execution of scheduled transactions")
149
149
// deprecated. Retain it to prevent nodes that previously had this configuration from crashing.
150
150
vardeprecatedEnableNewIngestionEnginebool
151
151
flags.BoolVar(&deprecatedEnableNewIngestionEngine, "enable-new-ingestion-engine", true, "enable new ingestion engine, default is true")
Copy file name to clipboardExpand all lines: cmd/verification_builder.go
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -54,8 +54,8 @@ type VerificationConfig struct {
54
54
blockWorkersuint64// number of blocks processed in parallel.
55
55
chunkWorkersuint64// number of chunks processed in parallel.
56
56
57
-
stopAtHeightuint64// height to stop the node on
58
-
scheduledCallbacksEnabledbool// enable execution of scheduled callbacks
57
+
stopAtHeightuint64// height to stop the node on
58
+
scheduledTransactionsEnabledbool// enable execution of scheduled transactions
59
59
}
60
60
61
61
typeVerificationNodeBuilderstruct {
@@ -83,7 +83,7 @@ func (v *VerificationNodeBuilder) LoadFlags() {
83
83
flags.Uint64Var(&v.verConf.blockWorkers, "block-workers", blockconsumer.DefaultBlockWorkers, "maximum number of blocks being processed in parallel")
84
84
flags.Uint64Var(&v.verConf.chunkWorkers, "chunk-workers", chunkconsumer.DefaultChunkWorkers, "maximum number of execution nodes a chunk data pack request is dispatched to")
85
85
flags.Uint64Var(&v.verConf.stopAtHeight, "stop-at-height", 0, "height to stop the node at (0 to disable)")
86
-
flags.BoolVar(&v.verConf.scheduledCallbacksEnabled, "scheduled-callbacks-enabled", fvm.DefaultScheduledCallbacksEnabled, "enable execution of scheduled callbacks")
86
+
flags.BoolVar(&v.verConf.scheduledTransactionsEnabled, "scheduled-callbacks-enabled", fvm.DefaultScheduledTransactionsEnabled, "enable execution of scheduled transactions")
87
87
})
88
88
}
89
89
@@ -211,7 +211,7 @@ func (v *VerificationNodeBuilder) LoadComponentsAndModules() {
0 commit comments