diff --git a/cmd/geth/main.go b/cmd/geth/main.go index dbcfe817584b43039da85f2c1eacb44f272a8ac6..1582953f7bb55c749fe17961c32f50b6cbda04de 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -50,7 +50,7 @@ import _ "net/http/pprof" const ( ClientIdentifier = "Geth" - Version = "0.9.19" + Version = "0.9.20" ) var ( diff --git a/eth/handler.go b/eth/handler.go index 41b6728d96802181ee9d39ed2205f7404ecd6ef0..88394543e21b1f8665619f3828479b1482ec1a86 100644 --- a/eth/handler.go +++ b/eth/handler.go @@ -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) }