fix bug in sql stmt

This commit is contained in:
Maximilian Schneider 2023-04-06 18:56:31 +02:00
parent 4c282b30b1
commit 048b46e4dd
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ impl PostgresSession {
r#"
UPDATE lite_rpc.txs
SET processed_slot = $1, cu_consumed = $2, cu_requested = $3
WHERE signature = $6
WHERE signature = $4
"#,
)
.await?;