diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-06-12 23:04:02 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-06-12 23:04:02 +0800 |
commit | 6f5c6150b7060b6b2ee68ac95b30f46c5c2c7f90 (patch) | |
tree | c000cf8a13294c91e608e28db98977e43f0c0752 /eth/backend.go | |
parent | 1bca2f6ec4df5adfe2ff58affb9fe5ef1e84c954 (diff) | |
parent | 645dfd96932c87e256c3edc9035843c6baf4a2e8 (diff) | |
download | go-tangerine-6f5c6150b7060b6b2ee68ac95b30f46c5c2c7f90.tar.gz 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/backend.go')
-rw-r--r-- | eth/backend.go | 2 |
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 { |