fix bug in sql stmt

This commit is contained in:
Maximilian Schneider 2023-04-06 18:30:51 +02:00
parent ff9c0a5e65
commit ba23f90641
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ impl PostgresSession {
.prepare(
r#"
UPDATE lite_rpc.txs
SET processed_slot = $1, processed_cluster_time = $2, processed_local_time = $3, cu_consumed = $4, cu_requested = $5,
SET processed_slot = $1, processed_cluster_time = $2, processed_local_time = $3, cu_consumed = $4, cu_requested = $5
WHERE signature = $6
"#,
)