diff options
author | zelig <viktor.tron@gmail.com> | 2015-04-08 19:43:55 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2015-04-09 20:58:35 +0800 |
commit | 262714fc6c269e0a3aa39892954b03db9418e649 (patch) | |
tree | 0d3ff6490f7df32b09f20c89c5900e0219759fe8 /blockpool/blockpool.go | |
parent | cbd0b42060d537d4d899b593be1ecd5ffdbd301a (diff) | |
download | go-tangerine-262714fc6c269e0a3aa39892954b03db9418e649.tar go-tangerine-262714fc6c269e0a3aa39892954b03db9418e649.tar.gz go-tangerine-262714fc6c269e0a3aa39892954b03db9418e649.tar.bz2 go-tangerine-262714fc6c269e0a3aa39892954b03db9418e649.tar.lz go-tangerine-262714fc6c269e0a3aa39892954b03db9418e649.tar.xz go-tangerine-262714fc6c269e0a3aa39892954b03db9418e649.tar.zst go-tangerine-262714fc6c269e0a3aa39892954b03db9418e649.zip |
future queued block support
- queued bool // flag for blockpool to skip TD check
- set to true when future block queued
- in checkTD: skip check if queued
- TODO: add test (insertchain sets future block)
Diffstat (limited to 'blockpool/blockpool.go')
-rw-r--r-- | blockpool/blockpool.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/blockpool/blockpool.go b/blockpool/blockpool.go index d823d9898..e1891f5f4 100644 --- a/blockpool/blockpool.go +++ b/blockpool/blockpool.go @@ -782,7 +782,8 @@ LOOP: // check if block's actual TD (calculated after successful insertChain) is identical to TD advertised for peer's head block. func (self *BlockPool) checkTD(nodes ...*node) { for _, n := range nodes { - if n.td != nil { + // skip check if queued future block + if n.td != nil && !n.block.Queued() { plog.DebugDetailf("peer td %v =?= block td %v", n.td, n.block.Td) if n.td.Cmp(n.block.Td) != 0 { self.peers.peerError(n.blockBy, ErrIncorrectTD, "on block %x", n.hash) |