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
1 changed files with 1 additions and 1 deletions

View File

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