diff options
-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", |