ceremonyclient/node/config/engine.go

11 lines
357 B
Go
Raw Normal View History

2023-08-21 03:50:38 +00:00
package config
type EngineConfig struct {
ProvingKeyId string `yaml:"provingKeyId"`
Filter string `yaml:"filter"`
GenesisSeed string `yaml:"genesisSeed"`
MaxFrames int64 `yaml:"maxFrames"`
PendingCommitWorkers int64 `yaml:"pendingCommitWorkers"`
MinimumPeersRequired int `yaml:"minimumPeersRequired"`
2023-08-21 03:50:38 +00:00
}