summaryrefslogtreecommitdiff
path: root/src/exchangedb/test_exchangedb.c
diff options
context:
space:
mode:
authorChristian Grothoff <grothoff@gnunet.org>2023-10-05 23:00:15 +0200
committerChristian Grothoff <grothoff@gnunet.org>2023-10-05 23:00:41 +0200
commit35873463b830a16a00f167a2ac9e146d0396bbb2 (patch)
treed61a630aa67d67ae65debd1d687610055462ddef /src/exchangedb/test_exchangedb.c
parentd9df371f03e65284b52c13877012c6cd716845d3 (diff)
downloadexchange-35873463b830a16a00f167a2ac9e146d0396bbb2.tar.gz
exchange-35873463b830a16a00f167a2ac9e146d0396bbb2.tar.bz2
exchange-35873463b830a16a00f167a2ac9e146d0396bbb2.zip
-fixing missing '/' at end of paths in Debian package, implement coin history logicv0.9.4-dev.1
Diffstat (limited to 'src/exchangedb/test_exchangedb.c')
-rw-r--r--src/exchangedb/test_exchangedb.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/exchangedb/test_exchangedb.c b/src/exchangedb/test_exchangedb.c
index f09489919..eeaaffad4 100644
--- a/src/exchangedb/test_exchangedb.c
+++ b/src/exchangedb/test_exchangedb.c
@@ -1724,12 +1724,16 @@ run (void *cls)
struct TALER_EXCHANGEDB_TransactionList *tl;
enum GNUNET_DB_QueryStatus qs;
uint64_t etag;
+ struct TALER_Amount balance;
+ struct TALER_DenominationHashP h_denom_pub;
qs = plugin->get_coin_transactions (plugin->cls,
&refresh.coin.coin_pub,
0,
0,
&etag,
+ &balance,
+ &h_denom_pub,
&tl);
FAILIF (0 >= qs);
FAILIF (NULL == tl);
@@ -1985,12 +1989,16 @@ run (void *cls)
FAILIF (1 != auditor_row_cnt);
{
uint64_t etag = 0;
+ struct TALER_Amount balance;
+ struct TALER_DenominationHashP h_denom_pub;
qs = plugin->get_coin_transactions (plugin->cls,
&refund.coin.coin_pub,
0,
0,
&etag,
+ &balance,
+ &h_denom_pub,
&tl);
}
FAILIF (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT != qs);