aboutsummaryrefslogtreecommitdiffstats
path: root/eth/backend.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-05-26 20:51:41 +0800
committerobscuren <geffobscura@gmail.com>2015-05-26 20:51:41 +0800
commit2f2dd80e480d90fa3bd2f5b2f2413a0eb51f3fa9 (patch)
tree4fb20244d3c10cdbeb85b993ac6d2e73f73016fa /eth/backend.go
parente6b143b00dcdb3841d41af0e9a1942f5c24d669f (diff)
parentd74ee40c86fed3a48d88de1094efc0a2f464b659 (diff)
downloaddexon-2f2dd80e480d90fa3bd2f5b2f2413a0eb51f3fa9.tar
dexon-2f2dd80e480d90fa3bd2f5b2f2413a0eb51f3fa9.tar.gz
dexon-2f2dd80e480d90fa3bd2f5b2f2413a0eb51f3fa9.tar.bz2
dexon-2f2dd80e480d90fa3bd2f5b2f2413a0eb51f3fa9.tar.lz
dexon-2f2dd80e480d90fa3bd2f5b2f2413a0eb51f3fa9.tar.xz
dexon-2f2dd80e480d90fa3bd2f5b2f2413a0eb51f3fa9.tar.zst
dexon-2f2dd80e480d90fa3bd2f5b2f2413a0eb51f3fa9.zip
Merge branch 'develop'
Diffstat (limited to 'eth/backend.go')
-rw-r--r--eth/backend.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/backend.go b/eth/backend.go
index 938071fc7..aeaac788a 100644
--- a/eth/backend.go
+++ b/eth/backend.go
@@ -535,6 +535,7 @@ func (self *Ethereum) AddPeer(nodeURL string) error {
func (s *Ethereum) Stop() {
s.txSub.Unsubscribe() // quits txBroadcastLoop
+ s.net.Stop()
s.protocolManager.Stop()
s.chainManager.Stop()
s.txPool.Stop()
@@ -544,7 +545,6 @@ func (s *Ethereum) Stop() {
}
s.StopAutoDAG()
- glog.V(logger.Info).Infoln("Server stopped")
close(s.shutdownChan)
}