eth-statediff-service/pkg/config.go
Roy Crihfield a2f3743ae9 refactor & use plugin builder
- removes StateTrieAt, we can no longer return a full trie without inner nodes
2023-09-29 03:17:32 +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
}