diff --git a/pkg/syncmgr/blockmode.go b/pkg/syncmgr/blockmode.go index 406204bf5..f357ca642 100644 --- a/pkg/syncmgr/blockmode.go +++ b/pkg/syncmgr/blockmode.go @@ -15,7 +15,7 @@ func (s *Syncmgr) blockModeOnBlock(peer SyncPeer, block payload.Block) error { if block.Index > s.nextBlockIndex+2000 { return nil } - if block.Index != s.nextBlockIndex { + if block.Index > s.nextBlockIndex { s.addToBlockPool(block) return nil }