We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c67f665 commit 2a4b619Copy full SHA for 2a4b619
1 file changed
api/solana_health.go
@@ -54,7 +54,7 @@ func (app *ApiServer) solanaHealth(c *fiber.Ctx) error {
54
LastIndexerUpdateAt: checkpoint.UpdatedAt,
55
}
56
57
- err = app.pool.QueryRow(c.Context(), `SELECT COUNT(*) FROM sol_unprocessed_txs`).Scan(&health.UnprocessedCount)
+ err = app.pool.QueryRow(c.Context(), `SELECT COUNT(*) FROM sol_retry_queue`).Scan(&health.UnprocessedCount)
58
if err != nil {
59
if err == pgx.ErrNoRows {
60
health.UnprocessedCount = 0
0 commit comments