diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-04-26 23:14:21 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-04-26 23:14:21 +0200 |
commit | 5152270454463960330a28638661420fecff0b82 (patch) | |
tree | 69733e52b1b2039c43d9024fefbca7bbc497bf70 /src/include | |
parent | fc57cccaa0295c0aeb640953bf00baccbc6d6f49 (diff) |
sql-ing for GET /orders
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/taler_merchantdb_plugin.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/include/taler_merchantdb_plugin.h b/src/include/taler_merchantdb_plugin.h index 956c526a..3d36a1ca 100644 --- a/src/include/taler_merchantdb_plugin.h +++ b/src/include/taler_merchantdb_plugin.h @@ -289,10 +289,14 @@ struct TALER_MERCHANTDB_OrderFilter * * @param cls a `json_t *` JSON array to build * @param order_id ID of the order + * @param order_serial row of the order in the database + * @param timestamp creation time of the order in the database */ typedef void (*TALER_MERCHANTDB_OrdersCallback)(void *cls, - const char *order_id); + const char *order_id, + uint64_t order_serial, + struct GNUNET_TIME_Absolute timestamp); /* **************** OLD: ******************** */ |