diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-06-03 14:40:59 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-06-03 14:40:59 +0200 |
commit | d4f5af21513c229d336e6a9dd99dc98c8179d4ce (patch) | |
tree | 01652eafd3ff2940366fc97ed519d34ecfce4b33 /src/mintdb | |
parent | 321208972d64cdbada8270c1ef0453e7e11fe18b (diff) |
bad missig space in SQL
Diffstat (limited to 'src/mintdb')
-rw-r--r-- | src/mintdb/plugin_mintdb_postgres.c | 8 |
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", |