mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
12 lines
166 B
Go
12 lines
166 B
Go
|
package fuzz
|
||
|
|
||
|
import (
|
||
|
"github.com/prysmaticlabs/prysm/shared/featureconfig"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
featureconfig.Init(&featureconfig.Flags{
|
||
|
SkipBLSVerify: true,
|
||
|
})
|
||
|
}
|