diff options
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/taler_exchangedb_lib.h | 4 | ||||
| -rw-r--r-- | src/include/taler_exchangedb_plugin.h | 2 | 
2 files changed, 4 insertions, 2 deletions
| diff --git a/src/include/taler_exchangedb_lib.h b/src/include/taler_exchangedb_lib.h index d70270e8..70ae3634 100644 --- a/src/include/taler_exchangedb_lib.h +++ b/src/include/taler_exchangedb_lib.h @@ -162,7 +162,7 @@ TALER_EXCHANGEDB_signing_key_write (const char *exchange_base_dir,   * @param cls closure   * @param alias coin alias   * @param dki the denomination key - * @param was_revoked #GNUNET_YES if the @a dki was revoked and wallets should trigger /payback + * @param revocation_master_sig non-NULL if @a dki was revoked   * @return #GNUNET_OK to continue to iterate,   *  #GNUNET_NO to stop iteration with no error,   *  #GNUNET_SYSERR to abort iteration with error! @@ -171,7 +171,7 @@ typedef int  (*TALER_EXCHANGEDB_DenominationKeyIterator)(void *cls,                                              const char *alias,                                              const struct TALER_EXCHANGEDB_DenominationKeyIssueInformation *dki, -                                            int was_revoked); +                                            const struct TALER_MasterSignatureP *revocation_master_sig);  /** diff --git a/src/include/taler_exchangedb_plugin.h b/src/include/taler_exchangedb_plugin.h index 40499b2b..a5295378 100644 --- a/src/include/taler_exchangedb_plugin.h +++ b/src/include/taler_exchangedb_plugin.h @@ -2030,6 +2030,8 @@ struct TALER_EXCHANGEDB_Plugin                                      struct TALER_EXCHANGEDB_Session *session,                                      const struct GNUNET_HashCode *denom_pub_hash,                                      const struct TALER_MasterSignatureP *master_sig); + +    /**     * Obtain information about a denomination key's revocation from     * the database. | 
