diff --git a/internal/confirmations/confirmed_block_listener.go b/internal/confirmations/confirmed_block_listener.go index 0854423..a03b245 100644 --- a/internal/confirmations/confirmed_block_listener.go +++ b/internal/confirmations/confirmed_block_listener.go @@ -206,11 +206,11 @@ func (cbl *confirmedBlockListener) processBlockNotification(block *apitypes.Bloc } switch { case dispatchHead != nil && block.BlockNumber == dispatchHead.BlockNumber+1 && block.ParentHash == dispatchHead.BlockHash: - // Ok - we just need to pop it onto the list, and wake the thread + // Ok - we just need to pop it onto the list, and ensure we wake the dispatcher routine log.L(cbl.ctx).Debugf("Directly passing block %d/%s to dispatcher after block %d/%s", block.BlockNumber, block.BlockHash, dispatchHead.BlockNumber, dispatchHead.BlockHash) cbl.newHeadToAdd = append(cbl.newHeadToAdd, block) - case dispatchHead == nil: - // The dispatcher will check these against the checkpoint block before pulling them to the blocksSinceCheckpoint list + case dispatchHead == nil && (cbl.rollingCheckpoint == nil || block.BlockNumber.Uint64() == (cbl.rollingCheckpoint.Block+1)): + // This is the next block the dispatcher needs, to wake it up with this. log.L(cbl.ctx).Debugf("Directly passing block %d/%s to dispatcher as no blocks pending", block.BlockNumber, block.BlockHash) cbl.newHeadToAdd = append(cbl.newHeadToAdd, block) default: @@ -232,8 +232,7 @@ func (cbl *confirmedBlockListener) processBlockNotification(block *apitypes.Bloc } } - // We didn't fit the block into our existing tree, so this means it's ahead of where we are up to. - // So just ensure the dispatcher is racing up to it + // There's something for the dispatcher to process cbl.tapDispatcher() } diff --git a/internal/confirmations/confirmed_block_listener_test.go b/internal/confirmations/confirmed_block_listener_test.go index 14537b3..3c3f39c 100644 --- a/internal/confirmations/confirmed_block_listener_test.go +++ b/internal/confirmations/confirmed_block_listener_test.go @@ -360,7 +360,7 @@ func TestCBLDispatcherFallsBehindHead(t *testing.T) { time.Sleep(1 * time.Millisecond) } b := <-esDispatch - assert.Equal(t, b.BlockEvent.BlockNumber, blocks[i].BlockNumber) + assert.Equal(t, b.BlockEvent.BlockNumber.Uint64(), blocks[i].BlockNumber.Uint64()) assert.Equal(t, b.BlockEvent.BlockInfo, blocks[i].BlockInfo) }