Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcdee committed Apr 8, 2024
1 parent 36008a5 commit bcb4da0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/chaindb/postgresql/upgrader.go
Original file line number Diff line number Diff line change
Expand Up @@ -1863,7 +1863,7 @@ func replaceValidatorDaySummariesIndex2(ctx context.Context, s *Service) error {
if _, err := tx.Exec(ctx, `
DROP INDEX IF EXISTS i_validator_day_summaries_2
`); err != nil {
return errors.Wrap(err, "failed to deop i_validator_day_summaries_2")
return errors.Wrap(err, "failed to drop i_validator_day_summaries_2")
}

if _, err := tx.Exec(ctx, `
Expand Down

0 comments on commit bcb4da0

Please sign in to comment.