mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-31 23:41:22 +00:00
6e90931837
* add fixes * more changes * simplify the solution * add shuffle * remove prom metric * add to mock * go doc * use non default source * add test * terence's review * all tests passing
15 lines
342 B
Go
15 lines
342 B
Go
package cache
|
|
|
|
import "github.com/prysmaticlabs/prysm/shared/featureconfig"
|
|
|
|
func init() {
|
|
featureconfig.Init(&featureconfig.Flag{
|
|
EnableAttestationCache: true,
|
|
EnableEth1DataVoteCache: true,
|
|
EnableShuffledIndexCache: true,
|
|
EnableCommitteeCache: true,
|
|
EnableActiveCountCache: true,
|
|
EnableActiveIndicesCache: true,
|
|
})
|
|
}
|