diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-06-11 13:14:59 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-06-11 13:14:59 +0200 |
commit | edc6d380824a2076f7f095a71b8cb5d53f32f6ce (patch) | |
tree | d97869d3b3c571c7f57f7e4f7a0194facc70a052 /src/include/taler_mintdb_plugin.h | |
parent | babeff1968b4076fa2f570af8c994727dd8fa09f (diff) |
use execution time for transactions, but expiration time for reserve summary (fixes #3809)
Diffstat (limited to 'src/include/taler_mintdb_plugin.h')
-rw-r--r-- | src/include/taler_mintdb_plugin.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/include/taler_mintdb_plugin.h b/src/include/taler_mintdb_plugin.h index d8644df8..2d167133 100644 --- a/src/include/taler_mintdb_plugin.h +++ b/src/include/taler_mintdb_plugin.h @@ -715,7 +715,6 @@ struct TALER_MINTDB_Plugin * @param balance the amount that has to be added to the reserve * @param details bank transaction details justifying the increment, * must be unique for each incoming transaction - * @param expiry the new expiration time for the reserve (#3809) * @return #GNUNET_OK upon success; #GNUNET_NO if the given * @a details are already known for this @a reserve_pub, * #GNUNET_SYSERR upon failures (DB error, incompatible currency) @@ -725,8 +724,7 @@ struct TALER_MINTDB_Plugin struct TALER_MINTDB_Session *db, const struct TALER_ReservePublicKeyP *reserve_pub, const struct TALER_Amount *balance, - const char *details, - struct GNUNET_TIME_Absolute expiry); + const char *details); /** |