Эх сурвалжийг харах

Merge branch 'release/0.9.20' into develop

obscuren 10 жил өмнө
parent
commit
28d6b30c0f
2 өөрчлөгдсөн 2 нэмэгдсэн , 2 устгасан
  1. 1 1
      cmd/geth/main.go
  2. 1 1
      eth/handler.go

+ 1 - 1
cmd/geth/main.go

@@ -50,7 +50,7 @@ import _ "net/http/pprof"
 
 const (
 	ClientIdentifier = "Geth"
-	Version          = "0.9.19"
+	Version          = "0.9.20"
 )
 
 var (

+ 1 - 1
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)
 	}