summaryrefslogtreecommitdiff
path: root/src/exchangedb/pg_get_ready_deposit.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/exchangedb/pg_get_ready_deposit.c')
-rw-r--r--src/exchangedb/pg_get_ready_deposit.c20
1 files changed, 4 insertions, 16 deletions
diff --git a/src/exchangedb/pg_get_ready_deposit.c b/src/exchangedb/pg_get_ready_deposit.c
index 741a480d2..af1235293 100644
--- a/src/exchangedb/pg_get_ready_deposit.c
+++ b/src/exchangedb/pg_get_ready_deposit.c
@@ -28,10 +28,10 @@
enum GNUNET_DB_QueryStatus
TEH_PG_get_ready_deposit (void *cls,
- uint64_t start_shard_row,
- uint64_t end_shard_row,
- struct TALER_MerchantPublicKeyP *merchant_pub,
- char **payto_uri)
+ uint64_t start_shard_row,
+ uint64_t end_shard_row,
+ struct TALER_MerchantPublicKeyP *merchant_pub,
+ char **payto_uri)
{
struct PostgresClosure *pg = cls;
struct GNUNET_TIME_Absolute now = {0};
@@ -57,9 +57,6 @@ TEH_PG_get_ready_deposit (void *cls,
"Finding ready deposits by deadline %s (%llu)\n",
GNUNET_TIME_absolute2s (now),
(unsigned long long) now.abs_value_us);
-
-
- /* Used in #postgres_get_ready_deposit() */
PREPARE (pg,
"deposits_get_ready",
"SELECT"
@@ -78,17 +75,8 @@ TEH_PG_get_ready_deposit (void *cls,
" dbr.wire_deadline ASC"
" ,dbr.shard ASC"
" LIMIT 1;");
-
-
-
return GNUNET_PQ_eval_prepared_singleton_select (pg->conn,
"deposits_get_ready",
params,
rs);
}
-
-
-
-
-
-