From fade09a7fffe7a0095076dd3ff57015ab1e2393e Mon Sep 17 00:00:00 2001 From: Alan Chen Date: Thu, 15 Jun 2017 08:28:57 -0500 Subject: eth: remove les server from protocol manager (#14625) --- eth/backend.go | 1 - eth/handler.go | 2 -- 2 files changed, 3 deletions(-) (limited to 'eth') diff --git a/eth/backend.go b/eth/backend.go index 639792333..be2d03283 100644 --- a/eth/backend.go +++ b/eth/backend.go @@ -88,7 +88,6 @@ type Ethereum struct { func (s *Ethereum) AddLesServer(ls LesServer) { s.lesServer = ls - s.protocolManager.lesServer = ls } // New creates a new Ethereum object (including the diff --git a/eth/handler.go b/eth/handler.go index 8c2f5660d..1af9e755b 100644 --- a/eth/handler.go +++ b/eth/handler.go @@ -87,8 +87,6 @@ type ProtocolManager struct { quitSync chan struct{} noMorePeers chan struct{} - lesServer LesServer - // wait group is used for graceful shutdowns during downloading // and processing wg sync.WaitGroup -- cgit