good morning!!!!

Skip to content
Snippets Groups Projects
Commit 20d4e527 authored by Jeffrey Wilcke's avatar Jeffrey Wilcke
Browse files

Merge pull request #2537 from obscuren/hotfix-pending-statu

miner: fixed pending state by not shutting down update loop
parents 5782164a a824c3f0
Branches devnet-70003
No related tags found
No related merge requests found
......@@ -145,7 +145,6 @@ func newWorker(config *core.ChainConfig, coinbase common.Address, eth core.Backe
fullValidation: false,
}
worker.events = worker.mux.Subscribe(core.ChainHeadEvent{}, core.ChainSideEvent{}, core.TxPreEvent{})
worker.wg.Add(1)
go worker.update()
go worker.wait()
......@@ -188,8 +187,6 @@ func (self *worker) start() {
}
func (self *worker) stop() {
// Quit update.
self.events.Unsubscribe()
self.wg.Wait()
self.mu.Lock()
......@@ -224,7 +221,6 @@ func (self *worker) unregister(agent Agent) {
}
func (self *worker) update() {
defer self.wg.Done()
for event := range self.events.Chan() {
// A real event arrived, process interesting content
switch ev := event.Data.(type) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment