eth: fixed proper BroadcastBlock for mined blocks

This commit is contained in:
obscuren 2015-04-18 02:38:13 +02:00
parent f1ae3dc4aa
commit a6c0a75f9a

View File

@ -467,7 +467,7 @@ func (self *Ethereum) minedBroadcastLoop() {
for obj := range self.minedBlockSub.Chan() { for obj := range self.minedBlockSub.Chan() {
switch ev := obj.(type) { switch ev := obj.(type) {
case core.NewMinedBlockEvent: case core.NewMinedBlockEvent:
self.protocolManager.BroadcastBlock(ev.Block) self.protocolManager.BroadcastBlock(ev.Block.Hash(), ev.Block)
} }
} }
} }