diff options
author | Christian Grothoff <christian@grothoff.org> | 2022-10-14 00:29:32 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2022-10-14 00:30:52 +0200 |
commit | 5f333f817c0fe4d66d1223833f8b8f7f22ad174c (patch) | |
tree | cbb80400469e0e0af9fe9bf29d0a7b270597f5ec /src/exchangedb/plugin_exchangedb_common.c | |
parent | 1ee69f6f1d93349a3e576a86c1d93d23ccec28ce (diff) |
add reserve-open-deposit transactions to coin histories
Diffstat (limited to 'src/exchangedb/plugin_exchangedb_common.c')
-rw-r--r-- | src/exchangedb/plugin_exchangedb_common.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/exchangedb/plugin_exchangedb_common.c b/src/exchangedb/plugin_exchangedb_common.c index 10263adff..84198dddf 100644 --- a/src/exchangedb/plugin_exchangedb_common.c +++ b/src/exchangedb/plugin_exchangedb_common.c @@ -152,6 +152,14 @@ TEH_COMMON_free_coin_transaction_list ( GNUNET_free (deposit); break; } + case TALER_EXCHANGEDB_TT_RESERVE_OPEN: + { + struct TALER_EXCHANGEDB_ReserveOpenListEntry *role; + + role = tl->details.reserve_open; + GNUNET_free (role); + break; + } } { struct TALER_EXCHANGEDB_TransactionList *next; |