diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-06-27 23:38:52 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-06-27 23:38:52 +0200 |
commit | 2e981c1a6ebf7e0f0b197811c4adde1cbb0225a8 (patch) | |
tree | 97022842eb78133b35af8b9afee46dc50ba80f54 | |
parent | 4ba4cf74ae700fc5ad5f157c81ad052c47e74d70 (diff) |
fix serial selection in auditor-sync
m--------- | contrib/gana | 0 | ||||
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | src/exchangedb/lrbt_callbacks.c | 2 |
3 files changed, 8 insertions, 0 deletions
diff --git a/contrib/gana b/contrib/gana -Subproject c70de07db9e32b5cf419c9c4d245f6f73f03b2d +Subproject 225750659eaa65f67687e2b17949a2362dfc731 diff --git a/debian/changelog b/debian/changelog index bb47ef123..74922b011 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +taler-exchange (0.9.0-11) unstable; urgency=low + + * Fix typo in taler-auditor-sync. + + -- Christian Grothoff <grothoff@gnu.org> Sun, 27 Jun 2021 14:02:10 +0100 + taler-exchange (0.9.0-10) unstable; urgency=low * Improve database performance for taler-exchange-wirewatch. diff --git a/src/exchangedb/lrbt_callbacks.c b/src/exchangedb/lrbt_callbacks.c index a905e503a..b5e53c831 100644 --- a/src/exchangedb/lrbt_callbacks.c +++ b/src/exchangedb/lrbt_callbacks.c @@ -956,6 +956,8 @@ lrbt_cb_table_wire_out (void *cls, for (unsigned int i = 0; i<num_results; i++) { struct GNUNET_PQ_ResultSpec rs[] = { + GNUNET_PQ_result_spec_uint64 ("serial", + &td.serial), TALER_PQ_result_spec_absolute_time ("execution_date", &td.details.wire_out.execution_date), GNUNET_PQ_result_spec_auto_from_type ("wtid_raw", |