Fixed miner and logger

This commit is contained in:
obscuren
2014-07-18 13:50:15 +02:00
parent cd9b344506
commit 2762ec22d0
2 changed files with 3 additions and 4 deletions

View File

@ -135,10 +135,9 @@ out:
func (self *Miner) Stop() {
logger.Infoln("Stopping...")
self.quitChan <- true
close(self.powQuitChan)
close(self.quitChan)
self.quitChan <- true
self.powQuitChan <- ethutil.React{}
self.ethereum.Reactor().Post("miner:stop", self)
}