mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 11:41:21 +00:00
6e2b6229fe
This reverts commit 085b45626e
.
31 lines
1015 B
Go
31 lines
1015 B
Go
// Package params defines important configuration options to be used when instantiating
|
|
// objects within the sharding package. For example, it defines objects such as a
|
|
// Config that will be useful when creating new shard instances.
|
|
package params
|
|
|
|
import (
|
|
"math"
|
|
)
|
|
|
|
// DefaultConfig returns pointer to a Config value with same defaults.
|
|
func DefaultConfig() *Config {
|
|
return &Config{
|
|
CollationSizeLimit: DefaultCollationSizeLimit(),
|
|
SlotDuration: 8.0,
|
|
CycleLength: 64,
|
|
}
|
|
}
|
|
|
|
// DefaultCollationSizeLimit is the integer value representing the maximum
|
|
// number of bytes allowed in a given collation.
|
|
func DefaultCollationSizeLimit() int64 {
|
|
return int64(math.Pow(float64(2), float64(20)))
|
|
}
|
|
|
|
// Config contains configs for node to participate in the sharded universe.
|
|
type Config struct {
|
|
CollationSizeLimit int64 // CollationSizeLimit is the maximum size the serialized blobs in a collation can take.
|
|
SlotDuration float64 // SlotDuration in seconds.
|
|
CycleLength uint64
|
|
}
|