eth-statediff-service/pkg/config.go
Roy Crihfield b9cba4c605 refactor & use plugin builder
- removes StateTrieAt, we can no longer return a full trie without inner nodes
2023-08-25 20:33:35 +08:00

10 lines
213 B
Go

package statediff
// ServiceConfig holds config params for the statediffing service
type ServiceConfig struct {
ServiceWorkers uint
TrieWorkers uint
WorkerQueueSize uint
PreRuns []RangeRequest
}