diff options
| author | Christian Grothoff <christian@grothoff.org> | 2015-03-09 12:29:41 +0100 |
|---|---|---|
| committer | Christian Grothoff <christian@grothoff.org> | 2015-03-09 12:29:41 +0100 |
| commit | 579f465c9b2ed1cd4602ee102073d633fda60cb9 (patch) | |
| tree | 99b546c629bfa876ccbe4f829a68c3fe8d80624a /src/mint/taler-mint-httpd_db.h | |
| parent | 7b0ae9c1d0a3c3165a8cef8cc12d04d207a49ce2 (diff) | |
implementing #3632: generate proof of insufficient funds by converting transaction history to JSON
Diffstat (limited to 'src/mint/taler-mint-httpd_db.h')
| -rw-r--r-- | src/mint/taler-mint-httpd_db.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mint/taler-mint-httpd_db.h b/src/mint/taler-mint-httpd_db.h index b945a7f6..dcd5e6fa 100644 --- a/src/mint/taler-mint-httpd_db.h +++ b/src/mint/taler-mint-httpd_db.h @@ -93,7 +93,8 @@ struct MeltDetails /** * How much of the coin's value did the client allow to be melted? - * (FIXME: are the fees included here!?) + * This amount includes the fees, so the final amount contributed + * to the melt is this value minus the fee for melting the coin. */ struct TALER_Amount melt_amount; }; @@ -107,6 +108,7 @@ struct MeltDetails * melted and confirm the melting operation to the client. * * @param connection the MHD connection to handle + * @param melt_hash hash code of the session the coins are melted into * @param refresh_session_pub public key of the refresh session * @param client_signature signature of the client (matching @a refresh_session_pub) * over the melting request @@ -119,6 +121,7 @@ struct MeltDetails */ int TALER_MINT_db_execute_refresh_melt (struct MHD_Connection *connection, + const struct GNUNET_HashCode *melt_hash, const struct GNUNET_CRYPTO_EddsaPublicKey *refresh_session_pub, const struct GNUNET_CRYPTO_EddsaSignature *client_signature, unsigned int num_new_denoms, |
