From 36ce54e5dc147c36e5cd18508229d62e605862c1 Mon Sep 17 00:00:00 2001 From: obscuren Date: Tue, 12 May 2015 11:41:56 +0200 Subject: [PATCH 1/2] cmd/geth: bump version to 0.9.20 --- cmd/geth/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/geth/main.go b/cmd/geth/main.go index dbcfe8175..1582953f7 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 ( From 8fe01b4bfa28ad5a1fdde7f9837e8f982843389a Mon Sep 17 00:00:00 2001 From: obscuren Date: Tue, 12 May 2015 16:27:17 +0200 Subject: [PATCH 2/2] eth: 100% tx propagation --- eth/handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/handler.go b/eth/handler.go index 41b6728d9..88394543e 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) }