summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-03-19 01:36:15 +0100
committerChristian Grothoff <christian@grothoff.org>2017-03-19 01:36:15 +0100
commitc75ac3b61295e380f8ea59a75d26426fefe2e4f9 (patch)
tree151a6283171e7503d60e47102e3359866b2dee64 /src/include
parentb42ce7e80a1cc342722e3634c687fcb148f511d0 (diff)
downloadexchange-c75ac3b61295e380f8ea59a75d26426fefe2e4f9.tar.gz
exchange-c75ac3b61295e380f8ea59a75d26426fefe2e4f9.tar.bz2
exchange-c75ac3b61295e380f8ea59a75d26426fefe2e4f9.zip
revise exchangedb structure eliminating duplicated wire transfer date from aggregations, instead joining it from wire_out when needed
Diffstat (limited to 'src/include')
-rw-r--r--src/include/taler_exchangedb_plugin.h4
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);
/**