mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-03 16:37:39 +00:00
a5881f924f
* Deprecate active count and committee cache flags * Merge branch 'master' into deprecate-flags
12 lines
241 B
Go
12 lines
241 B
Go
package cache
|
|
|
|
import "github.com/prysmaticlabs/prysm/shared/featureconfig"
|
|
|
|
func init() {
|
|
featureconfig.Init(&featureconfig.Flags{
|
|
EnableAttestationCache: true,
|
|
EnableEth1DataVoteCache: true,
|
|
EnableShuffledIndexCache: true,
|
|
})
|
|
}
|