make reserves_update more canonical, avoiding odd WHERE constraint that is unnecessary

This commit is contained in:
Christian Grothoff 2017-07-14 17:52:09 +02:00
parent e1aa257ee1
commit 0ea012e316
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC

View File

@ -566,10 +566,11 @@ postgres_prepare (PGconn *db_conn)
"UPDATE reserves"
" SET"
" expiration_date=$1 "
",current_balance_val=$2 "
",current_balance_val=$2"
",current_balance_frac=$3"
" WHERE current_balance_curr=$4"
" AND reserve_pub=$5;",
",current_balance_curr=$4"
" WHERE"
" reserve_pub=$5;",
5),
/* Used in #postgres_reserves_in_insert() to store transaction details */
GNUNET_PQ_make_prepare ("reserves_in_add_transaction",