Commit 07955b30 authored by obscuren's avatar obscuren

merge

parents 405c0ca4 94e543bc
...@@ -440,14 +440,12 @@ func (self *ChainManager) InsertChain(chain types.Blocks) error { ...@@ -440,14 +440,12 @@ func (self *ChainManager) InsertChain(chain types.Blocks) error {
self.setTotalDifficulty(td) self.setTotalDifficulty(td)
self.insert(block) self.insert(block)
/* jsonlogger.LogJson(&logger.EthChainNewHead{
jsonlogger.LogJson(&logger.EthChainNewHead{ BlockHash: ethutil.Bytes2Hex(block.Hash()),
BlockHash: ethutil.Bytes2Hex(block.Hash()), BlockNumber: block.Number(),
BlockNumber: block.Number(), ChainHeadHash: ethutil.Bytes2Hex(cblock.Hash()),
ChainHeadHash: ethutil.Bytes2Hex(cblock.Hash()), BlockPrevHash: ethutil.Bytes2Hex(block.ParentHash()),
BlockPrevHash: ethutil.Bytes2Hex(block.ParentHash()), })
})
*/
self.setTransState(state.New(block.Root(), self.stateDb)) self.setTransState(state.New(block.Root(), self.stateDb))
queue[i] = ChainEvent{block} queue[i] = ChainEvent{block}
......
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