diff options
author | Christian Grothoff <christian@grothoff.org> | 2017-03-15 19:28:05 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2017-03-15 19:28:05 +0100 |
commit | 6b5bfc57b59cd98cdbec74eabd61ee177659328f (patch) | |
tree | f8d56540b2408d57080f47a0be01c535b815dfa5 /src/include/taler_exchangedb_plugin.h | |
parent | 36195e85ea55eb95152f0b9b10210e9d1b35903a (diff) |
more work on auditor, towards coin/denomination key checks
Diffstat (limited to 'src/include/taler_exchangedb_plugin.h')
-rw-r--r-- | src/include/taler_exchangedb_plugin.h | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/src/include/taler_exchangedb_plugin.h b/src/include/taler_exchangedb_plugin.h index 2beb0e38d..524025e32 100644 --- a/src/include/taler_exchangedb_plugin.h +++ b/src/include/taler_exchangedb_plugin.h @@ -623,17 +623,12 @@ typedef int * * @param cls closure * @param rowid unique serial ID for the refresh session in our DB - * @param merchant_pub public key of the merchant * @param coin_pub public key of the coin * @param coin_sig signature from the coin * @param amount_with_fee amount that was deposited including fee - * @param h_proposal_data hash of the proposal data known to merchant and customer - * @param refund_deadline by which the merchant adviced that he might want - * to get a refund - * @param wire_deadline by which the merchant adviced that he would like the - * wire transfer to be executed - * @param receiver_wire_account wire details for the merchant, NULL from iterate_matching_deposits() - * @param done flag set if the deposit was already executed (or not) + * @param num_newcoins how many coins were issued + * @param noreveal_index which index was picked by the exchange in cut-and-choose + * @param session_hash what is the session hash * @return #GNUNET_OK to continue to iterate, #GNUNET_SYSERR to stop */ typedef int @@ -643,7 +638,8 @@ typedef int const struct TALER_CoinSpendSignatureP *coin_sig, const struct TALER_Amount *amount_with_fee, uint16_t num_newcoins, - uint16_t noreveal_index); + uint16_t noreveal_index, + const struct GNUNET_HashCode *session_hash); /** |