mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
16 lines
402 B
Go
16 lines
402 B
Go
|
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,
|
||
|
})
|
||
|
}
|