We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c456734 commit b8246baCopy full SHA for b8246ba
cmd/root.go
@@ -380,6 +380,10 @@ func init() {
380
if err := viper.BindPFlag("consensus-connection", RootCmd.PersistentFlags().Lookup("consensus-connection")); err != nil {
381
panic(err)
382
}
383
+ RootCmd.PersistentFlags().Bool("allow-insecure-connections", false, "allow insecure connections to remote beacon nodes")
384
+ if err := viper.BindPFlag("allow-insecure-connections", RootCmd.PersistentFlags().Lookup("allow-insecure-connections")); err != nil {
385
+ panic(err)
386
+ }
387
388
389
// initConfig reads in config file and ENV variables if set.
0 commit comments