commit 0f3f46ab4a76d44bd02e3d7393cb24ea17bebacd
parent beafba7c74d98a4c17bf9d0f41b666d9e4dd249e
Author: Manuel Geissbühler <manuel@debian>
Date: Thu, 2 Jan 2025 18:26:25 +0100
debugging
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/cash2ecash.cpp b/src/cash2ecash.cpp
@@ -115,7 +115,7 @@ void actionEventBankWStatusSelected(){
void actionEventBankWStatusPending(){
std::cout << "Action Event Bank Withdrawal Status Pending called" << std::endl;
- bankCommunication.withrawalStatusRequest(*withdrawal_id);
+ bankCommunication.withrawalStatusRequest(withdrawal_id);
}
void actionEventWConfirmationDone(){
@@ -132,7 +132,7 @@ void actionEventAcceptCashTimeout(){
std::cout << "Action Event Acceptcash Timeout called" << std::endl;
static struct TALER_Amount confirmedAmount;
TALER_string_to_amount("KUDOS:2.0", &confirmedAmount);
- bankCommunication.withdrawalConfirmReques(*withdrawal_id, &confirmedAmount);
+ bankCommunication.withdrawalConfirmReques(withdrawal_id, &confirmedAmount);
}
void actionEventConnectionTimeout(){