eth: send but not announce block to peers if propagate is true

pull/14996/head
mark.lin 7 years ago
parent 0ff35e170d
commit d4f11d9b4f
  1. 1
      eth/handler.go

@ -688,6 +688,7 @@ func (pm *ProtocolManager) BroadcastBlock(block *types.Block, propagate bool) {
peer.SendNewBlock(block, td)
}
log.Trace("Propagated block", "hash", hash, "recipients", len(transfer), "duration", common.PrettyDuration(time.Since(block.ReceivedAt)))
return
}
// Otherwise if the block is indeed in out own chain, announce it
if pm.blockchain.HasBlock(hash) {

Loading…
Cancel
Save