eth-statediff-service/pkg/config.go
Roy Crihfield eb56eee54e refactor & use plugin builder
- removes StateTrieAt, we can no longer return a full trie without inner nodes
2023-08-31 22:51:56 +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
}