mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-10 18:25:17 +00:00
10 lines
298 B
Go
10 lines
298 B
Go
|
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"`
|
||
|
}
|