diff options
author | Christian Grothoff <christian@grothoff.org> | 2022-05-23 16:02:55 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2022-05-23 16:02:55 +0200 |
commit | 76b8a2a8de551db8801bd42111bd959a28517cb3 (patch) | |
tree | 979340c340161640843371c02bf00cfec7554a0d /src/exchangedb/plugin_exchangedb_common.c | |
parent | a509a91f924cad3b5f0336f78e5c80e3621ad52b (diff) |
include purse deposits in coin history
Diffstat (limited to 'src/exchangedb/plugin_exchangedb_common.c')
-rw-r--r-- | src/exchangedb/plugin_exchangedb_common.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/exchangedb/plugin_exchangedb_common.c b/src/exchangedb/plugin_exchangedb_common.c index e36074e32..ca5903501 100644 --- a/src/exchangedb/plugin_exchangedb_common.c +++ b/src/exchangedb/plugin_exchangedb_common.c @@ -150,6 +150,15 @@ common_free_coin_transaction_list (void *cls, GNUNET_free (rr); break; } + case TALER_EXCHANGEDB_TT_PURSE_DEPOSIT: + { + struct TALER_EXCHANGEDB_PurseDepositListEntry *deposit; + + deposit = tl->details.purse_deposit; + GNUNET_free (deposit->exchange_base_url); + GNUNET_free (deposit); + break; + } } { struct TALER_EXCHANGEDB_TransactionList *next; |