From dfe79cc7845d94d14c2bc091c7eeac082f6b1e90 Mon Sep 17 00:00:00 2001 From: Péter Szilágyi Date: Mon, 14 Nov 2016 13:44:35 +0200 Subject: cmd/utils, mobile: place bootnodes in LGPL packages --- mobile/params.go | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'mobile/params.go') diff --git a/mobile/params.go b/mobile/params.go index bf0df7014..48344a538 100644 --- a/mobile/params.go +++ b/mobile/params.go @@ -20,6 +20,7 @@ package geth import ( "github.com/ethereum/go-ethereum/core" + "github.com/ethereum/go-ethereum/p2p/discv5" "github.com/ethereum/go-ethereum/params" ) @@ -76,3 +77,13 @@ type ChainConfig struct { func NewChainConfig() *ChainConfig { return new(ChainConfig) } + +// FoundationBootnodes returns the enode URLs of the P2P bootstrap nodes operated +// by the foundation running the V5 discovery protocol. +func FoundationBootnodes() *Enodes { + nodes := &Enodes{nodes: make([]*discv5.Node, len(params.DiscoveryV5Bootnodes))} + for i, node := range params.DiscoveryV5Bootnodes { + nodes.nodes[i] = node + } + return nodes +} -- cgit