Merge pull request #1441 from obscuren/logs-return-fix

miner, xeth: fire log event during mining. Fix return raw tx
This commit is contained in:
Jeffrey Wilcke
2015-07-09 07:24:35 -07:00
4 changed files with 24 additions and 12 deletions

View File

@@ -298,6 +298,7 @@ func (self *worker) wait() {
self.mux.Post(core.ChainEvent{block, block.Hash(), logs})
if stat == core.CanonStatTy {
self.mux.Post(core.ChainHeadEvent{block})
self.mux.Post(logs)
}
}(block, self.current.state.Logs())