aboutsummaryrefslogtreecommitdiff
path: root/src/exchangedb/plugin_exchangedb_common.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2024-10-31 10:26:30 +0100
committerChristian Grothoff <christian@grothoff.org>2024-11-05 10:37:37 +0100
commita9a63d3f1399ebaad2fee05c7248cd0c8daaf0a6 (patch)
treec30cea1633376067e93f05c7ba0f3c673f9f9151 /src/exchangedb/plugin_exchangedb_common.c
parentf6a86e8680ec57d5389e58c88bb462600894b25f (diff)
API changes for normalized payto
Diffstat (limited to 'src/exchangedb/plugin_exchangedb_common.c')
-rw-r--r--src/exchangedb/plugin_exchangedb_common.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/exchangedb/plugin_exchangedb_common.c b/src/exchangedb/plugin_exchangedb_common.c
index 562710eaa..3141c9ab2 100644
--- a/src/exchangedb/plugin_exchangedb_common.c
+++ b/src/exchangedb/plugin_exchangedb_common.c
@@ -1,6 +1,6 @@
/*
This file is part of TALER
- Copyright (C) 2015, 2016, 2020 Taler Systems SA
+ Copyright (C) 2015, 2016, 2020, 2024 Taler Systems SA
TALER is free software; you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
@@ -38,7 +38,7 @@ TEH_COMMON_free_reserve_history (
struct TALER_EXCHANGEDB_BankTransfer *bt;
bt = rh->details.bank;
- GNUNET_free (bt->sender_account_details);
+ GNUNET_free (bt->sender_account_details.full_payto);
GNUNET_free (bt);
break;
}
@@ -65,7 +65,7 @@ TEH_COMMON_free_reserve_history (
struct TALER_EXCHANGEDB_ClosingTransfer *closing;
closing = rh->details.closing;
- GNUNET_free (closing->receiver_account_details);
+ GNUNET_free (closing->receiver_account_details.full_payto);
GNUNET_free (closing);
break;
}
@@ -128,7 +128,7 @@ TEH_COMMON_free_coin_transaction_list (
struct TALER_EXCHANGEDB_DepositListEntry *deposit;
deposit = tl->details.deposit;
- GNUNET_free (deposit->receiver_wire_account);
+ GNUNET_free (deposit->receiver_wire_account.full_payto);
GNUNET_free (deposit);
break;
}