diff options
author | Christian Grothoff <christian@grothoff.org> | 2017-04-16 17:21:26 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2017-04-16 17:21:26 +0200 |
commit | 62afe341b7c6d4c33faea3d913b8322738258e8a (patch) | |
tree | 524a59a74f3926557e11a5b063aae32d3834def1 /src/include | |
parent | 4d4ac495a4cca70d7ac14d01d0a0088f86e82ba1 (diff) |
fix #4984
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/taler_exchangedb_plugin.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/taler_exchangedb_plugin.h b/src/include/taler_exchangedb_plugin.h index a287ea563..fe08bd27e 100644 --- a/src/include/taler_exchangedb_plugin.h +++ b/src/include/taler_exchangedb_plugin.h @@ -2040,6 +2040,7 @@ struct TALER_EXCHANGEDB_Plugin * @param session a session * @param denom_pub_hash hash of the revoked denomination key * @param[out] master_sig signature affirming the revocation + * @param[out] rowid row where the information is stored * @return #GNUNET_OK on success, * #GNUNET_NO no such entry exists * #GNUNET_SYSERR on DB errors @@ -2048,7 +2049,8 @@ struct TALER_EXCHANGEDB_Plugin (*get_denomination_revocation)(void *cls, struct TALER_EXCHANGEDB_Session *session, const struct GNUNET_HashCode *denom_pub_hash, - struct TALER_MasterSignatureP *master_sig); + struct TALER_MasterSignatureP *master_sig, + uint64_t *rowid); }; |