mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 17:22:18 +00:00
15 lines
372 B
Go
15 lines
372 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,
|
|
})
|
|
}
|