aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-05-03 20:11:47 +0800
committerobscuren <geffobscura@gmail.com>2015-05-03 20:11:47 +0800
commitba2236fa513e06603d3fa2a6d721be3879d7f50e (patch)
tree5216b1678f0f9884c898b6301d21c8d14c9d7aa6
parentf2a2b2ac70632b878fea393f698168b65adbac2f (diff)
downloaddexon-ba2236fa513e06603d3fa2a6d721be3879d7f50e.tar
dexon-ba2236fa513e06603d3fa2a6d721be3879d7f50e.tar.gz
dexon-ba2236fa513e06603d3fa2a6d721be3879d7f50e.tar.bz2
dexon-ba2236fa513e06603d3fa2a6d721be3879d7f50e.tar.lz
dexon-ba2236fa513e06603d3fa2a6d721be3879d7f50e.tar.xz
dexon-ba2236fa513e06603d3fa2a6d721be3879d7f50e.tar.zst
dexon-ba2236fa513e06603d3fa2a6d721be3879d7f50e.zip
cmd/geth, eth: bump version & tmp fix for incorrect TD peers
-rw-r--r--cmd/geth/main.go2
-rw-r--r--eth/sync.go7
2 files changed, 8 insertions, 1 deletions
diff --git a/cmd/geth/main.go b/cmd/geth/main.go
index ef007051c..0f5ebf5be 100644
--- a/cmd/geth/main.go
+++ b/cmd/geth/main.go
@@ -47,7 +47,7 @@ import _ "net/http/pprof"
const (
ClientIdentifier = "Geth"
- Version = "0.9.14"
+ Version = "0.9.15"
)
var (
diff --git a/eth/sync.go b/eth/sync.go
index 16d85d1f1..9e8b21a7c 100644
--- a/eth/sync.go
+++ b/eth/sync.go
@@ -89,6 +89,13 @@ func (pm *ProtocolManager) synchronise(peer *peer) {
return
}
+ // FIXME if we have the hash in our chain and the TD of the peer is
+ // much higher than ours, something is wrong with us or the peer.
+ // Check if the hash is on our own chain
+ if pm.chainman.HasBlock(peer.recentHash) {
+ return
+ }
+
// Get the hashes from the peer (synchronously)
err := pm.downloader.Synchronise(peer.id, peer.recentHash)
if err != nil && err == downloader.ErrBadPeer {