From 4600ecb5c71e1f311c1c31e8d596a2a43ce6a51b Mon Sep 17 00:00:00 2001 From: obscuren Date: Thu, 21 May 2015 17:56:06 +0200 Subject: [PATCH 1/2] cmd/geth: bump version 0.9.23 --- 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 6d345a18bf..513b405ffc 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -48,7 +48,7 @@ import _ "net/http/pprof" const ( ClientIdentifier = "Geth" - Version = "0.9.22" + Version = "0.9.23" ) var ( From 3ea9868b656077c38af5ea8590761c3218ce558e Mon Sep 17 00:00:00 2001 From: obscuren Date: Thu, 21 May 2015 18:14:32 +0200 Subject: [PATCH 2/2] miner: on downloader.Done/Fail stop immediately. Ignore pending evs --- miner/miner.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/miner/miner.go b/miner/miner.go index c9427f3023..4e99245f8c 100644 --- a/miner/miner.go +++ b/miner/miner.go @@ -65,6 +65,8 @@ func (self *Miner) update() { } // unsubscribe. we're only interested in this event once events.Unsubscribe() + // stop immediately and ignore all further pending events + break } }