prysm-pulse/beacon-chain/cache/feature_flag_test.go
Preston Van Loon db68c8a57b
Enable attestation cache flag by default, deprecate feature flag (#4873)
* Enable attester flag by default
2020-02-16 01:07:14 +00:00

10 lines
172 B
Go

package cache
import "github.com/prysmaticlabs/prysm/shared/featureconfig"
func init() {
featureconfig.Init(&featureconfig.Flags{
EnableEth1DataVoteCache: true,
})
}