diff options
author | obscuren <geffobscura@gmail.com> | 2014-09-24 00:19:56 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-09-24 00:19:56 +0800 |
commit | 615d20598ababa5988d5b36a48640c154d8866fd (patch) | |
tree | 231b6a1931bbe0685d03269769f4df0d396054f4 /peer.go | |
parent | 5c5db7d931379b3a36606103eb886a3d26f456e1 (diff) | |
parent | 46a496428f2d2a3a0f9ddcb755c825dfc1f73436 (diff) | |
download | dexon-615d20598ababa5988d5b36a48640c154d8866fd.tar dexon-615d20598ababa5988d5b36a48640c154d8866fd.tar.gz dexon-615d20598ababa5988d5b36a48640c154d8866fd.tar.bz2 dexon-615d20598ababa5988d5b36a48640c154d8866fd.tar.lz dexon-615d20598ababa5988d5b36a48640c154d8866fd.tar.xz dexon-615d20598ababa5988d5b36a48640c154d8866fd.tar.zst dexon-615d20598ababa5988d5b36a48640c154d8866fd.zip |
Merge branch 'develop'
Diffstat (limited to 'peer.go')
-rw-r--r-- | peer.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -572,7 +572,7 @@ func (self *Peer) FetchBlocks() { func (self *Peer) FetchHashes() { blockPool := self.ethereum.blockPool - if self.statusKnown && self.td.Cmp(blockPool.td) >= 0 { + if self.td.Cmp(blockPool.td) >= 0 { blockPool.td = self.td if !blockPool.HasLatestHash() { |