2021-10-25 19:06:05 +00:00
|
|
|
package statediff
|
|
|
|
|
2023-08-25 07:57:33 +00:00
|
|
|
// ServiceConfig holds config params for the statediffing service
|
|
|
|
type ServiceConfig struct {
|
2021-10-25 19:06:05 +00:00
|
|
|
ServiceWorkers uint
|
|
|
|
TrieWorkers uint
|
|
|
|
WorkerQueueSize uint
|
|
|
|
PreRuns []RangeRequest
|
|
|
|
}
|