diff options
author | obscuren <geffobscura@gmail.com> | 2015-02-14 01:03:16 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-02-14 01:03:16 +0800 |
commit | 0f3c25b26589f5667b618d6a91b73392d02ccd1e (patch) | |
tree | 9badb0df243fbb076c2f5b24c24faf3b779d6a96 | |
parent | 790de35e7ff5235c83e081faf00aff35640cdcc6 (diff) | |
download | dexon-0f3c25b26589f5667b618d6a91b73392d02ccd1e.tar dexon-0f3c25b26589f5667b618d6a91b73392d02ccd1e.tar.gz dexon-0f3c25b26589f5667b618d6a91b73392d02ccd1e.tar.bz2 dexon-0f3c25b26589f5667b618d6a91b73392d02ccd1e.tar.lz dexon-0f3c25b26589f5667b618d6a91b73392d02ccd1e.tar.xz dexon-0f3c25b26589f5667b618d6a91b73392d02ccd1e.tar.zst dexon-0f3c25b26589f5667b618d6a91b73392d02ccd1e.zip |
Propagate blocks
-rw-r--r-- | cmd/mist/gui.go | 4 | ||||
-rw-r--r-- | miner/worker.go | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/cmd/mist/gui.go b/cmd/mist/gui.go index 6d179eea1..484cda5ff 100644 --- a/cmd/mist/gui.go +++ b/cmd/mist/gui.go @@ -412,9 +412,7 @@ func (gui *Gui) update() { switch ev := ev.(type) { case core.NewBlockEvent: 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: tx := ev.Tx diff --git a/miner/worker.go b/miner/worker.go index cd1c6e28f..9cb4ab76b 100644 --- a/miner/worker.go +++ b/miner/worker.go @@ -131,6 +131,7 @@ func (self *worker) wait() { self.current.block.Header().Nonce = work.Nonce self.chain.InsertChain(types.Blocks{self.current.block}) + self.mux.Post(core.NewMinedBlockEvent{self.current.block}) } break } |