exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit d4f5af21513c229d336e6a9dd99dc98c8179d4ce
parent 321208972d64cdbada8270c1ef0453e7e11fe18b
Author: Christian Grothoff <christian@grothoff.org>
Date:   Wed,  3 Jun 2015 14:40:59 +0200

bad missig space in SQL

Diffstat:
Msrc/mintdb/plugin_mintdb_postgres.c | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

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