diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-03-10 17:05:48 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-03-10 17:05:48 +0100 |
commit | 2f70806cfaff445880639857fef45fd7bdd7f8a5 (patch) | |
tree | 20e45f2b638ec6342cd095d4fe1e3869c19cae22 | |
parent | 7e26ae385896a974d8a90234a155c32b383e70f7 (diff) | |
download | exchange-2f70806cfaff445880639857fef45fd7bdd7f8a5.tar.gz exchange-2f70806cfaff445880639857fef45fd7bdd7f8a5.zip |
fix #3635
-rw-r--r-- | src/mint/taler-mint-httpd_db.c | 2 | ||||
-rw-r--r-- | src/mint/taler-mint-httpd_refresh.c | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/src/mint/taler-mint-httpd_db.c b/src/mint/taler-mint-httpd_db.c index 12e4f3e78..4ae4408e5 100644 --- a/src/mint/taler-mint-httpd_db.c +++ b/src/mint/taler-mint-httpd_db.c | |||
@@ -501,8 +501,6 @@ refresh_accept_melts (struct MHD_Connection *connection, | |||
501 | * required value left and if so, store that they have been | 501 | * required value left and if so, store that they have been |
502 | * melted and confirm the melting operation to the client. | 502 | * melted and confirm the melting operation to the client. |
503 | * | 503 | * |
504 | * FIXME: some arguments are redundant here... | ||
505 | * | ||
506 | * @param connection the MHD connection to handle | 504 | * @param connection the MHD connection to handle |
507 | * @param melt_hash hash code of the session the coins are melted into | 505 | * @param melt_hash hash code of the session the coins are melted into |
508 | * @param refresh_session_pub public key of the refresh session | 506 | * @param refresh_session_pub public key of the refresh session |
diff --git a/src/mint/taler-mint-httpd_refresh.c b/src/mint/taler-mint-httpd_refresh.c index d36e42085..a5d609ed8 100644 --- a/src/mint/taler-mint-httpd_refresh.c +++ b/src/mint/taler-mint-httpd_refresh.c | |||
@@ -162,12 +162,10 @@ handle_refresh_melt_binary (struct MHD_Connection *connection, | |||
162 | "{s:s}", | 162 | "{s:s}", |
163 | "error", "value mismatch"); | 163 | "error", "value mismatch"); |
164 | } | 164 | } |
165 | |||
166 | /* FIXME: we must also store the signature over the melt! (#3635) */ | ||
167 | return TALER_MINT_db_execute_refresh_melt (connection, | 165 | return TALER_MINT_db_execute_refresh_melt (connection, |
168 | &melt_hash, | 166 | &melt_hash, |
169 | refresh_session_pub, | 167 | refresh_session_pub, |
170 | NULL, /* FIXME: #3635! */ | 168 | commit_client_sig, |
171 | num_new_denoms, | 169 | num_new_denoms, |
172 | denom_pubs, | 170 | denom_pubs, |
173 | coin_count, | 171 | coin_count, |