Skip to content

Commit c42c249

Browse files
authored
Fix: sol_unprocessed_txs was renamed to sol_retry_queue (#513)
1 parent c67f665 commit c42c249

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

api/solana_health.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ func (app *ApiServer) solanaHealth(c *fiber.Ctx) error {
5454
LastIndexerUpdateAt: checkpoint.UpdatedAt,
5555
}
5656

57-
err = app.pool.QueryRow(c.Context(), `SELECT COUNT(*) FROM sol_unprocessed_txs`).Scan(&health.UnprocessedCount)
57+
err = app.pool.QueryRow(c.Context(), `SELECT COUNT(*) FROM sol_retry_queue`).Scan(&health.UnprocessedCount)
5858
if err != nil {
5959
if err == pgx.ErrNoRows {
6060
health.UnprocessedCount = 0

0 commit comments

Comments
 (0)