File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ import (
30
30
31
31
const (
32
32
ClientIdentifier = "Ethereum(G)"
33
- Version = "0.7.10 "
33
+ Version = "0.7.11 "
34
34
)
35
35
36
36
var clilogger = logger .NewLogger ("CLI" )
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ import (
31
31
32
32
const (
33
33
ClientIdentifier = "Mist"
34
- Version = "0.7.10 "
34
+ Version = "0.7.11 "
35
35
)
36
36
37
37
var ethereum * eth.Ethereum
Original file line number Diff line number Diff line change @@ -412,6 +412,12 @@ func (p *Peer) HandleInbound() {
412
412
//}
413
413
414
414
case wire .MsgDiscTy :
415
+ blockPool := p .ethereum .blockPool
416
+ if blockPool .peer == p {
417
+ blockPool .peer = nil
418
+ blockPool .td = ethutil .Big0
419
+ }
420
+
415
421
p .Stop ()
416
422
peerlogger .Infoln ("Disconnect peer: " , DiscReason (msg .Data .Get (0 ).Uint ()))
417
423
case wire .MsgPingTy :
You can’t perform that action at this time.
0 commit comments