gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-exchange] branch master updated: add batch withdraw to demultiple


From: gnunet
Subject: [taler-exchange] branch master updated: add batch withdraw to demultiplexer
Date: Sun, 01 May 2022 13:16:11 +0200

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository exchange.

The following commit(s) were added to refs/heads/master by this push:
     new a4ede7ca add batch withdraw to demultiplexer
a4ede7ca is described below

commit a4ede7caec835cf530f53718b6303a88ae4f1581
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Sun May 1 13:16:03 2022 +0200

    add batch withdraw to demultiplexer
---
 src/exchange/taler-exchange-httpd.c | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/src/exchange/taler-exchange-httpd.c 
b/src/exchange/taler-exchange-httpd.c
index d84289c2..71edae65 100644
--- a/src/exchange/taler-exchange-httpd.c
+++ b/src/exchange/taler-exchange-httpd.c
@@ -30,6 +30,7 @@
 #include <limits.h>
 #include "taler_mhd_lib.h"
 #include "taler-exchange-httpd_auditors.h"
+#include "taler-exchange-httpd_batch-withdraw.h"
 #include "taler-exchange-httpd_contract.h"
 #include "taler-exchange-httpd_csr.h"
 #include "taler-exchange-httpd_deposit.h"
@@ -71,6 +72,12 @@
  */
 #define WITH_P2P 1
 
+/**
+ * Should the experimental batch withdraw be supported?
+ * ON for testing disable for 0.9.0 release!
+ */
+#define WITH_EXPERIMENTAL 1
+
 /**
  * Backlog for listen operation on unix domain sockets.
  */
@@ -367,6 +374,12 @@ handle_post_reserves (struct TEH_RequestContext *rc,
       .op = "withdraw",
       .handler = &TEH_handler_withdraw
     },
+#if WITH_EXPERIMENTAL
+    {
+      .op = "batch-withdraw",
+      .handler = &TEH_handler_batch_withdraw
+    },
+#endif
     {
       .op = "status",
       .handler = &TEH_handler_reserves_status

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]