exchange

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

commit 4506b4878ffb4f827cd0be0ab7587ed3654edd0d
parent 649879b0b6413166e4e24c7bd52993576b72d266
Author: Christian Grothoff <christian@grothoff.org>
Date:   Wed, 27 Jan 2016 19:56:57 +0100

fix name of member to order by

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

diff --git a/src/mintdb/plugin_mintdb_postgres.c b/src/mintdb/plugin_mintdb_postgres.c @@ -954,7 +954,7 @@ postgres_prepare (PGconn *db_conn) " WHERE" " tiny=false AND" " done=false" - " ORDER BY execution_time ASC" + " ORDER BY wire_deadline ASC" " LIMIT 1;", 0, NULL); @@ -977,7 +977,7 @@ postgres_prepare (PGconn *db_conn) " merchant_pub=$1 AND" " h_wire=$2 AND" " done=false" - " ORDER BY execution_time ASC" + " ORDER BY wire_deadline ASC" " LIMIT $3", 3, NULL);