Propagate blocks
This commit is contained in:
parent
790de35e7f
commit
0f3c25b265
@ -412,9 +412,7 @@ func (gui *Gui) update() {
|
|||||||
switch ev := ev.(type) {
|
switch ev := ev.(type) {
|
||||||
case core.NewBlockEvent:
|
case core.NewBlockEvent:
|
||||||
gui.processBlock(ev.Block, false)
|
gui.processBlock(ev.Block, false)
|
||||||
if bytes.Compare(ev.Block.Coinbase(), gui.address()) == 0 {
|
gui.setWalletValue(gui.eth.ChainManager().State().GetBalance(gui.address()), nil)
|
||||||
gui.setWalletValue(gui.eth.ChainManager().State().GetBalance(gui.address()), nil)
|
|
||||||
}
|
|
||||||
|
|
||||||
case core.TxPreEvent:
|
case core.TxPreEvent:
|
||||||
tx := ev.Tx
|
tx := ev.Tx
|
||||||
|
@ -131,6 +131,7 @@ func (self *worker) wait() {
|
|||||||
self.current.block.Header().Nonce = work.Nonce
|
self.current.block.Header().Nonce = work.Nonce
|
||||||
|
|
||||||
self.chain.InsertChain(types.Blocks{self.current.block})
|
self.chain.InsertChain(types.Blocks{self.current.block})
|
||||||
|
self.mux.Post(core.NewMinedBlockEvent{self.current.block})
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user