Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion op-supervisor/supervisor/backend/db/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ func (db *ChainsDB) ResumeFromLastSealedBlock() error {
db.logger.Info("Resuming, but found no DB contents", "chain", chain)
return true
}
db.logger.Info("Resuming, starting from last sealed block", "head", head)
db.logger.Info("Resuming, starting from last sealed block", "chain", chain, "head", head)
if err := logStore.Rewind(head); err != nil {
result = fmt.Errorf("%w: failed to rewind chain %s to sealed block %d", errRewindFailed, chain, head)
return false
Expand Down