mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-06 01:32:18 +00:00
88bce4af34
* Revert "Deprecate new cache feature flag (#4502)"
This reverts commit 5287ddc114
.
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,
|
|
})
|
|
}
|