prysm-pulse/beacon-chain/cache/feature_flag_test.go

15 lines
342 B
Go
Raw Normal View History

package cache
import "github.com/prysmaticlabs/prysm/shared/featureconfig"
func init() {
2019-10-07 05:11:49 +00:00
featureconfig.Init(&featureconfig.Flag{
EnableAttestationCache: true,
EnableEth1DataVoteCache: true,
EnableShuffledIndexCache: true,
EnableCommitteeCache: true,
EnableActiveCountCache: true,
EnableActiveIndicesCache: true,
})
}