diff options
author | Christian Grothoff <christian@grothoff.org> | 2017-03-19 01:36:15 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2017-03-19 01:36:15 +0100 |
commit | c75ac3b61295e380f8ea59a75d26426fefe2e4f9 (patch) | |
tree | 151a6283171e7503d60e47102e3359866b2dee64 /src/include/taler_exchangedb_plugin.h | |
parent | b42ce7e80a1cc342722e3634c687fcb148f511d0 (diff) |
revise exchangedb structure eliminating duplicated wire transfer date from aggregations, instead joining it from wire_out when needed
Diffstat (limited to 'src/include/taler_exchangedb_plugin.h')
-rw-r--r-- | src/include/taler_exchangedb_plugin.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/include/taler_exchangedb_plugin.h b/src/include/taler_exchangedb_plugin.h index 3dae4896c..970a57f44 100644 --- a/src/include/taler_exchangedb_plugin.h +++ b/src/include/taler_exchangedb_plugin.h @@ -1531,15 +1531,13 @@ struct TALER_EXCHANGEDB_Plugin * @param session database connection * @param wtid the raw wire transfer identifier we used * @param deposit_serial_id row in the deposits table for which this is aggregation data - * @param execution_time when did we execute the transaction * @return #GNUNET_OK on success, #GNUNET_SYSERR on DB errors */ int (*insert_aggregation_tracking)(void *cls, struct TALER_EXCHANGEDB_Session *session, const struct TALER_WireTransferIdentifierRawP *wtid, - unsigned long long deposit_serial_id, - struct GNUNET_TIME_Absolute execution_time); + unsigned long long deposit_serial_id); /** |