summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-06-03 14:40:59 +0200
committerChristian Grothoff <christian@grothoff.org>2015-06-03 14:40:59 +0200
commitd4f5af21513c229d336e6a9dd99dc98c8179d4ce (patch)
tree01652eafd3ff2940366fc97ed519d34ecfce4b33 /src
parent321208972d64cdbada8270c1ef0453e7e11fe18b (diff)
downloadexchange-d4f5af21513c229d336e6a9dd99dc98c8179d4ce.tar.gz
exchange-d4f5af21513c229d336e6a9dd99dc98c8179d4ce.tar.bz2
exchange-d4f5af21513c229d336e6a9dd99dc98c8179d4ce.zip
bad missig space in SQL
Diffstat (limited to 'src')
-rw-r--r--src/mintdb/plugin_mintdb_postgres.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mintdb/plugin_mintdb_postgres.c b/src/mintdb/plugin_mintdb_postgres.c
index 17d8f6252..b16a13a6e 100644
--- a/src/mintdb/plugin_mintdb_postgres.c
+++ b/src/mintdb/plugin_mintdb_postgres.c
@@ -710,10 +710,10 @@ postgres_prepare (PGconn *db_conn)
",h_wire"
",coin_sig"
" FROM deposits"
- "WHERE ("
- " (coin_pub = $1) AND"
- " (transaction_id = $2) AND"
- " (merchant_pub = $3)"
+ " WHERE ("
+ " (coin_pub=$1) AND"
+ " (transaction_id=$2) AND"
+ " (merchant_pub=$3)"
" )",
3, NULL);
PREPARE ("get_deposit_with_coin_pub",