diff options
Diffstat (limited to 'mobile/discover.go')
-rw-r--r-- | mobile/discover.go | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/mobile/discover.go b/mobile/discover.go index bb421fc87..9df2d04c3 100644 --- a/mobile/discover.go +++ b/mobile/discover.go @@ -22,20 +22,9 @@ package geth import ( "errors" - "github.com/ethereum/go-ethereum/cmd/utils" "github.com/ethereum/go-ethereum/p2p/discv5" ) -// 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(utils.DiscoveryV5Bootnodes))} - for i, node := range utils.DiscoveryV5Bootnodes { - nodes.nodes[i] = node - } - return nodes -} - // Enode represents a host on the network. type Enode struct { node *discv5.Node |