removing extra spaces, correcting argument counts
This commit is contained in:
parent
1fe362112a
commit
e2fb24f0a9
@ -391,7 +391,7 @@ postgres_prepare (PGconn *db_conn)
|
||||
") VALUES "
|
||||
"($1, $2, $3, $4, $5, $6,"
|
||||
"$7, $8, $9, $10, $11, $12, $13, $14);",
|
||||
12, NULL);
|
||||
14, NULL);
|
||||
PREPARE ("get_reserve",
|
||||
"SELECT "
|
||||
"current_balance_val"
|
||||
@ -418,7 +418,7 @@ postgres_prepare (PGconn *db_conn)
|
||||
",current_balance_val=$2 "
|
||||
",current_balance_frac=$3 "
|
||||
"WHERE current_balance_curr=$4 AND reserve_pub=$5 ",
|
||||
4, NULL);
|
||||
5, NULL);
|
||||
PREPARE ("create_reserves_in_transaction",
|
||||
"INSERT INTO reserves_in ("
|
||||
" reserve_pub,"
|
||||
@ -546,8 +546,8 @@ postgres_prepare (PGconn *db_conn)
|
||||
",fee_frac "
|
||||
",fee_curr "
|
||||
") "
|
||||
"VALUES ($1, $2, $3, $4) ",
|
||||
3, NULL);
|
||||
"VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12)",
|
||||
12, NULL);
|
||||
PREPARE ("get_refresh_order",
|
||||
"SELECT denom_pub "
|
||||
"FROM refresh_order "
|
||||
|
Loading…
Reference in New Issue
Block a user