Skip to content
Snippets Groups Projects
Select Git revision
  • master
1 result

Dockerfile

Blame
  • parameters.go 358 B
    package autopeering
    
    import (
    	flag "github.com/spf13/pflag"
    )
    
    const (
    	// CfgEntryNodes defines the config flag of the entry nodes.
    	CfgEntryNodes = "autopeering.entryNodes"
    )
    
    func init() {
    	flag.StringSlice(CfgEntryNodes, []string{"2PV5487xMw5rasGBXXWeqSi4hLz7r19YBt8Y1TGAsQbj@ressims.iota.cafe:15626"}, "list of trusted entry nodes for auto peering")
    }