fix bug in sql stmt

This commit is contained in:
Maximilian Schneider 2023-04-06 18:45:04 +02:00
parent ba23f90641
commit 4c282b30b1
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, cu_consumed = $2, cu_requested = $3
WHERE signature = $6
"#,
)