mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-10 18:25:17 +00:00
58456c1057
* feat: IPC for wesolowski * update self peer info * remove digests and signatures * add new binaries and digests * Signatory #13 added * Signatory #4 added (#231) * added sig.6 files (#232) * Signatory #9 added (#233) * Added signatories #1, #2, #3, #5, #8, #12, #14, #15, #16, #17 * remove binaries, release ready --------- Co-authored-by: 0xOzgur <29779769+0xOzgur@users.noreply.github.com> Co-authored-by: Demipoet <161999657+demipoet@users.noreply.github.com> Co-authored-by: Freekers <1370857+Freekers@users.noreply.github.com>
24 lines
1.1 KiB
Go
24 lines
1.1 KiB
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"`
|
||
MinimumPeersRequired int `yaml:"minimumPeersRequired"`
|
||
StatsMultiaddr string `yaml:"statsMultiaddr"`
|
||
// Sets the fmt.Sprintf format string to use as the listen multiaddrs for
|
||
// data worker processes
|
||
DataWorkerBaseListenMultiaddr string `yaml:"dataWorkerBaseListenMultiaddr"`
|
||
// Sets the starting port number to use as the listen port for data worker
|
||
// processes, incrementing by 1 until n-1, n = cores. (Example: a 4 core
|
||
// system, base listen port of 40000 will listen on 40000, 40001, 40002)
|
||
DataWorkerBaseListenPort uint16 `yaml:"dataWorkerBaseListenPort"`
|
||
DataWorkerMemoryLimit int64 `yaml:"dataWorkerMemoryLimit"`
|
||
|
||
// Values used only for testing – do not override these in production, your
|
||
// node will get kicked out
|
||
Difficulty uint32 `yaml:"difficulty"`
|
||
}
|