瀏覽代碼

eth: remote a superfluous peerSet method

Péter Szilágyi 10 年之前
父節點
當前提交
4755caeb2d
共有 1 個文件被更改,包括 0 次插入12 次删除
  1. 0 12
      eth/peer.go

+ 0 - 12
eth/peer.go

@@ -243,18 +243,6 @@ func (ps *peerSet) TxLackingPeers(hash common.Hash) []*peer {
 	return list
 }
 
-// AllPeers retrieves a flat list of all the peers within the set.
-func (ps *peerSet) AllPeers() []*peer {
-	ps.lock.RLock()
-	defer ps.lock.RUnlock()
-
-	list := make([]*peer, 0, len(ps.peers))
-	for _, p := range ps.peers {
-		list = append(list, p)
-	}
-	return list
-}
-
 // BestPeer retrieves the known peer with the currently highest total difficulty.
 func (ps *peerSet) BestPeer() *peer {
 	ps.lock.RLock()