Chain indexer fix + new CHT (#15934)

* core, light: fix chain indexer bug

* light: add new CHT
This commit is contained in:
Felföldi Zsolt
2018-01-23 12:10:49 +01:00
committed by Péter Szilágyi
parent 397c6cde1e
commit ec96216d16
2 changed files with 9 additions and 9 deletions

View File

@ -393,7 +393,7 @@ func (self *LightChain) InsertHeaderChain(chain []*types.Header, checkFreq int)
return err
}
i, err := self.hc.InsertHeaderChain(chain, whFunc, start)
go self.postChainEvents(events)
self.postChainEvents(events)
return i, err
}