Skip to content

Commit

Permalink
Update services/horizon/internal/db2/history/key_value.go
Browse files Browse the repository at this point in the history
Co-authored-by: shawn <[email protected]>
  • Loading branch information
tamirms and sreuland authored Sep 3, 2024
1 parent 399818f commit cee27c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/horizon/internal/db2/history/key_value.go
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ func (q *Q) getLookupTableReapOffset(ctx context.Context, table string) (int64,
var offset int64
offset, err = strconv.ParseInt(text, 10, 64)
if err != nil {
return 0, fmt.Errorf("invalid offset: %s", text)
return 0, fmt.Errorf("invalid offset: %s for table %s", text, table)
}
return offset, nil
}
Expand Down

0 comments on commit cee27c1

Please sign in to comment.