Skip to content

Commit

Permalink
eth: 100% tx propagation
Browse files Browse the repository at this point in the history
  • Loading branch information
obscuren committed May 12, 2015
1 parent 36ce54e commit 8fe01b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eth/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ func (pm *ProtocolManager) BroadcastTx(hash common.Hash, tx *types.Transaction)
}
}
// Broadcast block to peer set
peers = peers[:int(math.Sqrt(float64(len(peers))))]
//FIXME include this again: peers = peers[:int(math.Sqrt(float64(len(peers))))]
for _, peer := range peers {
peer.sendTransaction(tx)
}
Expand Down

0 comments on commit 8fe01b4

Please sign in to comment.