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

16 lines
402 B
Go
Raw Normal View History

package cache
import "github.com/prysmaticlabs/prysm/shared/featureconfig"
func init() {
featureconfig.InitFeatureConfig(&featureconfig.FeatureFlagConfig{
EnableAttestationCache: true,
EnableActiveBalanceCache: true,
EnableAncestorBlockCache: true,
EnableStartShardCache: true,
EnableSeedCache: true,
EnableEth1DataVoteCache: true,
EnableTotalBalanceCache: true,
})
}