mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-06 01:32:18 +00:00
5287ddc114
* Starting to deprecate new cache flag * All tests passing * Fixed minimal test * Merge branch 'master' of git+ssh://github.com/prysmaticlabs/prysm into deprecate-flag * Fixed mainnet spec test * Fixed a typo * Merge refs/heads/master into deprecate-flag * Merge refs/heads/master into deprecate-flag * Merge refs/heads/master into deprecate-flag
11 lines
205 B
Go
11 lines
205 B
Go
package cache
|
|
|
|
import "github.com/prysmaticlabs/prysm/shared/featureconfig"
|
|
|
|
func init() {
|
|
featureconfig.Init(&featureconfig.Flags{
|
|
EnableAttestationCache: true,
|
|
EnableEth1DataVoteCache: true,
|
|
})
|
|
}
|