diff options
author | obscuren <geffobscura@gmail.com> | 2015-04-09 23:27:43 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-04-09 23:39:02 +0800 |
commit | 764a802eaa33892447b82069ee1b1bb5a478837b (patch) | |
tree | 02daa2105b89b5b6419521785f6f54d217ed544c /blockpool/peers.go | |
parent | 663fd8f8491fcf10429388237cbb361856c6e49c (diff) | |
download | dexon-764a802eaa33892447b82069ee1b1bb5a478837b.tar dexon-764a802eaa33892447b82069ee1b1bb5a478837b.tar.gz dexon-764a802eaa33892447b82069ee1b1bb5a478837b.tar.bz2 dexon-764a802eaa33892447b82069ee1b1bb5a478837b.tar.lz dexon-764a802eaa33892447b82069ee1b1bb5a478837b.tar.xz dexon-764a802eaa33892447b82069ee1b1bb5a478837b.tar.zst dexon-764a802eaa33892447b82069ee1b1bb5a478837b.zip |
Disabled TD check
@zelig: Temporarily commented out TD check untill the rest of the network has
been fixed.
Diffstat (limited to 'blockpool/peers.go')
-rw-r--r-- | blockpool/peers.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/blockpool/peers.go b/blockpool/peers.go index 019399038..e5d6a16d6 100644 --- a/blockpool/peers.go +++ b/blockpool/peers.go @@ -473,6 +473,7 @@ func (self *peer) getBlockHashes() bool { self.addError(ErrInvalidBlock, "%v", err) self.bp.status.badPeers[self.id]++ } else { + /* @zelig: Commented out temp untill the rest of the network has been fixed. // XXX added currentBlock check (?) if self.currentBlock != nil && self.currentBlock.Td != nil && !self.currentBlock.Queued() { plog.DebugDetailf("HeadSection: <%s> inserted %s to blockchain... check TD %v =?= %v", self.id, hex(self.parentHash), self.td, self.currentBlock.Td) @@ -481,6 +482,7 @@ func (self *peer) getBlockHashes() bool { self.bp.status.badPeers[self.id]++ } } + */ headKey := self.parentHash height := self.bp.status.chain[headKey] + 1 self.bp.status.chain[self.currentBlockHash] = height |