2019-07-30 03:38:05 +00:00
|
|
|
package cache
|
|
|
|
|
|
|
|
import "github.com/prysmaticlabs/prysm/shared/featureconfig"
|
|
|
|
|
|
|
|
func init() {
|
2019-11-20 03:03:00 +00:00
|
|
|
featureconfig.Init(&featureconfig.Flags{
|
2020-01-12 23:46:14 +00:00
|
|
|
EnableEth1DataVoteCache: true,
|
2019-07-30 03:38:05 +00:00
|
|
|
})
|
|
|
|
}
|