aboutsummaryrefslogtreecommitdiff
path: root/src/mint/taler-mint-httpd_refresh.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mint/taler-mint-httpd_refresh.c')
-rw-r--r--src/mint/taler-mint-httpd_refresh.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/mint/taler-mint-httpd_refresh.c b/src/mint/taler-mint-httpd_refresh.c
index db3edebe8..6c3cbbc71 100644
--- a/src/mint/taler-mint-httpd_refresh.c
+++ b/src/mint/taler-mint-httpd_refresh.c
@@ -145,16 +145,14 @@ request_json_check_signature (struct MHD_Connection *connection,
145 * 145 *
146 * @param connection the MHD connection to handle 146 * @param connection the MHD connection to handle
147 * @param refresh_session_pub public key of the melt operation 147 * @param refresh_session_pub public key of the melt operation
148 * @param num_new_denoms number of coins to be created 148 * @param num_new_denoms number of coins to be created, size of y-dimension of @commit_link array
149 * @param denom_pubs array of @a num_new_denoms keys 149 * @param denom_pubs array of @a num_new_denoms keys
150 * @param coin_count number of coins to be melted 150 * @param coin_count number of coins to be melted, size of y-dimension of @commit_coin array
151 * @param coin_public_infos array with @a coin_count entries about the coins 151 * @param coin_public_infos array with @a coin_count entries about the coins
152 * @param coin_melt_details array with @a coin_count entries with melting details 152 * @param coin_melt_details array with @a coin_count entries with melting details
153 * @param melt_sig_json signature affirming the overall melt operation 153 * @param melt_sig_json signature affirming the overall melt operation
154 * @param commit_client_sig signature of the client over this commitment 154 * @param commit_client_sig signature of the client over this commitment
155 * @param kappa size of x-dimension of @commit_coin and @commit_link arrays 155 * @param kappa size of x-dimension of @commit_coin and @commit_link arrays
156 * @param num_oldcoins size of y-dimension of @commit_coin array
157 * @param num_newcoins size of y-dimension of @commit_link array
158 * @param commit_coin 2d array of coin commitments (what the mint is to sign 156 * @param commit_coin 2d array of coin commitments (what the mint is to sign
159 * once the "/refres/reveal" of cut and choose is done) 157 * once the "/refres/reveal" of cut and choose is done)
160 * @param commit_link 2d array of coin link commitments (what the mint is 158 * @param commit_link 2d array of coin link commitments (what the mint is
@@ -173,8 +171,6 @@ handle_refresh_melt_binary (struct MHD_Connection *connection,
173 const json_t *melt_sig_json, 171 const json_t *melt_sig_json,
174 const struct GNUNET_CRYPTO_EddsaSignature *commit_client_sig, 172 const struct GNUNET_CRYPTO_EddsaSignature *commit_client_sig,
175 unsigned int kappa, 173 unsigned int kappa,
176 unsigned int num_oldcoins,
177 unsigned int num_newcoins,
178 struct RefreshCommitCoin *const* commit_coin, 174 struct RefreshCommitCoin *const* commit_coin,
179 struct RefreshCommitLink *const* commit_link) 175 struct RefreshCommitLink *const* commit_link)
180 176
@@ -274,8 +270,6 @@ handle_refresh_melt_binary (struct MHD_Connection *connection,
274 coin_public_infos, 270 coin_public_infos,
275 coin_melt_details, 271 coin_melt_details,
276 kappa, 272 kappa,
277 num_oldcoins,
278 num_newcoins,
279 commit_coin, 273 commit_coin,
280 commit_link); 274 commit_link);
281} 275}
@@ -669,8 +663,6 @@ handle_refresh_melt_json (struct MHD_Connection *connection,
669 melt_sig_json, 663 melt_sig_json,
670 NULL /* FIXME: 3635! */, 664 NULL /* FIXME: 3635! */,
671 kappa, 665 kappa,
672 num_oldcoins,
673 num_newcoins,
674 commit_coin, 666 commit_coin,
675 commit_link); 667 commit_link);
676 free_commit_coins (commit_coin, kappa, num_newcoins); 668 free_commit_coins (commit_coin, kappa, num_newcoins);