aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-06-12 23:04:02 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-06-12 23:04:02 +0800
commit6f5c6150b7060b6b2ee68ac95b30f46c5c2c7f90 (patch)
treec000cf8a13294c91e608e28db98977e43f0c0752 /eth
parent1bca2f6ec4df5adfe2ff58affb9fe5ef1e84c954 (diff)
parent645dfd96932c87e256c3edc9035843c6baf4a2e8 (diff)
downloadgo-tangerine-6f5c6150b7060b6b2ee68ac95b30f46c5c2c7f90.tar
go-tangerine-6f5c6150b7060b6b2ee68ac95b30f46c5c2c7f90.tar.gz
go-tangerine-6f5c6150b7060b6b2ee68ac95b30f46c5c2c7f90.tar.bz2
go-tangerine-6f5c6150b7060b6b2ee68ac95b30f46c5c2c7f90.tar.lz
go-tangerine-6f5c6150b7060b6b2ee68ac95b30f46c5c2c7f90.tar.xz
go-tangerine-6f5c6150b7060b6b2ee68ac95b30f46c5c2c7f90.tar.zst
go-tangerine-6f5c6150b7060b6b2ee68ac95b30f46c5c2c7f90.zip
Merge pull request #1255 from obscuren/chain-proc-interupt
eth, core: interrupt the chain processing on stop
Diffstat (limited to 'eth')
-rw-r--r--eth/backend.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/backend.go b/eth/backend.go
index 60e9359dc..d2ec0cc62 100644
--- a/eth/backend.go
+++ b/eth/backend.go
@@ -527,8 +527,8 @@ func (self *Ethereum) AddPeer(nodeURL string) error {
func (s *Ethereum) Stop() {
s.net.Stop()
- s.protocolManager.Stop()
s.chainManager.Stop()
+ s.protocolManager.Stop()
s.txPool.Stop()
s.eventMux.Stop()
if s.whisper != nil {