Commit 2762ec22 authored by obscuren's avatar obscuren

Fixed miner and logger

parent cd9b3445
......@@ -96,7 +96,7 @@ func AddLogSystem(logSystem LogSystem) {
mutex.Lock()
defer mutex.Unlock()
if logSystems == nil {
logMessages = make(chan *logMessage)
logMessages = make(chan *logMessage, 10)
quit = make(chan bool, 1)
go start()
}
......
......@@ -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)
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment