diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-04-12 22:18:26 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-04-12 22:18:26 +0200 |
commit | 5f2d3295dc513074b127efbe099d859a2596bed5 (patch) | |
tree | 14d66e0b8e86a70d559384887aea17035015f4c4 /src/include/taler_mintdb_plugin.h | |
parent | 6b64ad261e92d4983f4fc4aa930942cc4b528db4 (diff) | |
parent | 33d0182a1ee688be6ce3cb30ab451ca986cc5c22 (diff) |
Merge branch 'master' of git+ssh://git.taler.net/var/git/mint
Diffstat (limited to 'src/include/taler_mintdb_plugin.h')
-rw-r--r-- | src/include/taler_mintdb_plugin.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/include/taler_mintdb_plugin.h b/src/include/taler_mintdb_plugin.h index 307b7564..540cb88c 100644 --- a/src/include/taler_mintdb_plugin.h +++ b/src/include/taler_mintdb_plugin.h @@ -25,6 +25,7 @@ #include <gnunet/gnunet_util_lib.h> #include "taler_util.h" #include "taler_signatures.h" +#include "taler_mintdb_lib.h" /** @@ -652,6 +653,19 @@ struct TALER_MINTDB_Plugin (*rollback) (void *cls, struct TALER_MINTDB_Session *sesssion); + /** + * Insert a denomination key + * + * @param cls the @e cls of this struct with the plugin-specific state + * @param sesssion connection to use + * @param dki the denomination key information + * @return #GNUNET_OK on success; #GNUNET_SYSERR on failure + */ + int + (*insert_denomination) (void *cls, + struct TALER_MINTDB_Session *session, + const struct TALER_MINTDB_DenominationKeyIssueInformation *dki); + /** * Get the summary of a reserve. |