diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-06-11 14:58:23 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-06-11 14:58:23 +0200 |
commit | a2c77cd36a2b0d0ebb7d8b999cabcc8a36ccd6bb (patch) | |
tree | 12b13bfb89c646f7821a913cbd3706aa324f86c6 /src/include | |
parent | eedfc0485010a2afb1cb4a2d202eb0ceb8bc5cb8 (diff) |
fixing #3823
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/taler_mintdb_plugin.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/taler_mintdb_plugin.h b/src/include/taler_mintdb_plugin.h index 17edd83e5..2eeead26f 100644 --- a/src/include/taler_mintdb_plugin.h +++ b/src/include/taler_mintdb_plugin.h @@ -678,15 +678,15 @@ struct TALER_MINTDB_Plugin * * @param cls the @e cls of this struct with the plugin-specific state * @param sesssion connection to use - * @param dki the denomination key information (#3823) + * @param denom_pub the public key used for signing coins of this denomination + * @param issue issuing information with value, fees and other info about the coin * @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); - - + const struct TALER_DenominationPublicKey *denom_pub, + const struct TALER_DenominationKeyValidityPS *issue); /** |