You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
log.Warn().Msgf("Committer didn't find the following range in staging: %v - %v", blocksToCommit[0].Int64(), blocksToCommit[len(blocksToCommit)-1].Int64())
returnfmt.Errorf("first block number (%s) in commit batch does not match expected (%s)", actualFirstBlock.Number.String(), expectedStartBlockNumber.String())
log.Debug().Msgf("Committer is caught up with staging. No need to poll for missing blocks.")
203
+
return
204
+
}
205
+
log.Debug().Msgf("Detected missing blocks in staging data starting from %s.", blocksToCommit[0].String())
206
+
207
+
poller:=NewBoundlessPoller(c.rpc, c.storage)
208
+
poller.Poll(blocksToCommit)
209
+
log.Debug().Msgf("Polled %d blocks due to committer detecting them as missing. Range: %s - %s", len(blocksToCommit), blocksToCommit[0].String(), blocksToCommit[len(blocksToCommit)-1].String())
0 commit comments