gnunet-svn
[Top][All Lists]
Advanced

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

[cash2ecash] branch master updated: debugging


From: gnunet
Subject: [cash2ecash] branch master updated: debugging
Date: Thu, 02 Jan 2025 18:21:47 +0100

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

manuel-geissbuehler pushed a commit to branch master
in repository cash2ecash.

The following commit(s) were added to refs/heads/master by this push:
     new beafba7  debugging
beafba7 is described below

commit beafba7c74d98a4c17bf9d0f41b666d9e4dd249e
Author: Manuel Geissbühler <manuel@debian>
AuthorDate: Thu Jan 2 18:21:37 2025 +0100

    debugging
---
 src/cash2ecash.cpp | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/cash2ecash.cpp b/src/cash2ecash.cpp
index b322099..d0cacc8 100644
--- a/src/cash2ecash.cpp
+++ b/src/cash2ecash.cpp
@@ -24,8 +24,8 @@ enum state_e {
 
 enum state_e state = INIT;
 
-const char **withdrawal_id;
-const char **taler_withdraw_uri;
+const char *withdrawal_id;
+const char *taler_withdraw_uri;
 
 std::vector<event_e> eventFIFO;
 std::mutex eventFIFOMutex;
@@ -99,13 +99,13 @@ void actionEventBankTokenDone(){
   std::cout << "Action Event Bank Token Done called" << std::endl;
   static struct TALER_Amount amountZero;
   TALER_amount_set_zero("KUDOS", &amountZero);
-  bankCommunication.withdrawalRequest(NULL, &amountZero, withdrawal_id, 
taler_withdraw_uri);
+  bankCommunication.withdrawalRequest(NULL, &amountZero, &withdrawal_id, 
&taler_withdraw_uri);
 }
 
 void actionEventBankWithdrawalDone(){
   std::cout << "Action Event Bank Withdrawal Done called" << std::endl;
-  screenConnection->generateQR(*taler_withdraw_uri);
-  bankCommunication.withrawalStatusRequest(*withdrawal_id);
+  screenConnection->generateQR(taler_withdraw_uri);
+  bankCommunication.withrawalStatusRequest(withdrawal_id);
 }
 
 void actionEventBankWStatusSelected(){

-- 
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]