diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-03-10 16:21:20 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-03-10 16:21:20 +0100 |
commit | daa5fbe3b755113d0a82b606976f68851e3a11dc (patch) | |
tree | dcdcb7412dfc5ec0325ed538bcd04926cb418930 | |
parent | c2c8646a83c07662e1246f768c23e71c687ddcb0 (diff) | |
download | exchange-daa5fbe3b755113d0a82b606976f68851e3a11dc.tar.gz exchange-daa5fbe3b755113d0a82b606976f68851e3a11dc.zip |
remove redundant arg 'commit_client_sig'
-rw-r--r-- | src/mint/taler-mint-httpd_db.c | 2 | ||||
-rw-r--r-- | src/mint/taler-mint-httpd_db.h | 2 | ||||
-rw-r--r-- | src/mint/taler-mint-httpd_refresh.c | 1 | ||||
-rw-r--r-- | src/mint/taler-mint-httpd_refresh.h | 2 |
4 files changed, 1 insertions, 6 deletions
diff --git a/src/mint/taler-mint-httpd_db.c b/src/mint/taler-mint-httpd_db.c index 4423433b8..a4a03aba0 100644 --- a/src/mint/taler-mint-httpd_db.c +++ b/src/mint/taler-mint-httpd_db.c | |||
@@ -513,7 +513,6 @@ refresh_accept_melts (struct MHD_Connection *connection, | |||
513 | * @param coin_count number of entries in @a coin_public_infos and @a coin_melt_details | 513 | * @param coin_count number of entries in @a coin_public_infos and @a coin_melt_details |
514 | * @param coin_public_infos information about the coins to melt | 514 | * @param coin_public_infos information about the coins to melt |
515 | * @param coin_melt_details signatures and (residual) value of the respective coin should be melted | 515 | * @param coin_melt_details signatures and (residual) value of the respective coin should be melted |
516 | * @param commit_client_sig signature of the client over this commitment | ||
517 | * @param kappa size of x-dimension of @commit_coin and @commit_link arrays | 516 | * @param kappa size of x-dimension of @commit_coin and @commit_link arrays |
518 | * @param num_oldcoins size of y-dimension of @commit_link array | 517 | * @param num_oldcoins size of y-dimension of @commit_link array |
519 | * @param num_newcoins size of y-dimension of @commit_coin array | 518 | * @param num_newcoins size of y-dimension of @commit_coin array |
@@ -534,7 +533,6 @@ TALER_MINT_db_execute_refresh_melt (struct MHD_Connection *connection, | |||
534 | unsigned int coin_count, | 533 | unsigned int coin_count, |
535 | const struct TALER_CoinPublicInfo *coin_public_infos, | 534 | const struct TALER_CoinPublicInfo *coin_public_infos, |
536 | const struct MeltDetails *coin_melt_details, | 535 | const struct MeltDetails *coin_melt_details, |
537 | const struct GNUNET_CRYPTO_EddsaSignature *commit_client_sig, | ||
538 | unsigned int kappa, | 536 | unsigned int kappa, |
539 | unsigned int num_oldcoins, | 537 | unsigned int num_oldcoins, |
540 | unsigned int num_newcoins, | 538 | unsigned int num_newcoins, |
diff --git a/src/mint/taler-mint-httpd_db.h b/src/mint/taler-mint-httpd_db.h index 2a26de9b4..91d40e44c 100644 --- a/src/mint/taler-mint-httpd_db.h +++ b/src/mint/taler-mint-httpd_db.h | |||
@@ -119,7 +119,6 @@ struct MeltDetails | |||
119 | * @param coin_count number of entries in @a coin_public_infos and @ a coin_melt_details | 119 | * @param coin_count number of entries in @a coin_public_infos and @ a coin_melt_details |
120 | * @param coin_public_infos information about the coins to melt | 120 | * @param coin_public_infos information about the coins to melt |
121 | * @param coin_melt_details signatures and (residual) value of the respective coin should be melted | 121 | * @param coin_melt_details signatures and (residual) value of the respective coin should be melted |
122 | * @param commit_client_sig signature of the client over this commitment | ||
123 | * @param kappa size of x-dimension of @commit_coin and @commit_link arrays | 122 | * @param kappa size of x-dimension of @commit_coin and @commit_link arrays |
124 | * @param num_oldcoins size of y-dimension of @commit_coin array | 123 | * @param num_oldcoins size of y-dimension of @commit_coin array |
125 | * @param num_newcoins size of y-dimension of @commit_link array | 124 | * @param num_newcoins size of y-dimension of @commit_link array |
@@ -141,7 +140,6 @@ TALER_MINT_db_execute_refresh_melt (struct MHD_Connection *connection, | |||
141 | unsigned int coin_count, | 140 | unsigned int coin_count, |
142 | const struct TALER_CoinPublicInfo *coin_public_infos, | 141 | const struct TALER_CoinPublicInfo *coin_public_infos, |
143 | const struct MeltDetails *coin_melt_details, | 142 | const struct MeltDetails *coin_melt_details, |
144 | const struct GNUNET_CRYPTO_EddsaSignature *commit_client_sig, | ||
145 | unsigned int kappa, | 143 | unsigned int kappa, |
146 | unsigned int num_oldcoins, | 144 | unsigned int num_oldcoins, |
147 | unsigned int num_newcoins, | 145 | unsigned int num_newcoins, |
diff --git a/src/mint/taler-mint-httpd_refresh.c b/src/mint/taler-mint-httpd_refresh.c index d7b670749..db3edebe8 100644 --- a/src/mint/taler-mint-httpd_refresh.c +++ b/src/mint/taler-mint-httpd_refresh.c | |||
@@ -273,7 +273,6 @@ handle_refresh_melt_binary (struct MHD_Connection *connection, | |||
273 | coin_count, | 273 | coin_count, |
274 | coin_public_infos, | 274 | coin_public_infos, |
275 | coin_melt_details, | 275 | coin_melt_details, |
276 | NULL /* FIXME: 3635! */, | ||
277 | kappa, | 276 | kappa, |
278 | num_oldcoins, | 277 | num_oldcoins, |
279 | num_newcoins, | 278 | num_newcoins, |
diff --git a/src/mint/taler-mint-httpd_refresh.h b/src/mint/taler-mint-httpd_refresh.h index c1f69e1de..55a780243 100644 --- a/src/mint/taler-mint-httpd_refresh.h +++ b/src/mint/taler-mint-httpd_refresh.h | |||
@@ -1,6 +1,6 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of TALER | 2 | This file is part of TALER |
3 | Copyright (C) 2014 GNUnet e.V. | 3 | Copyright (C) 2014, 2015 GNUnet e.V. |
4 | 4 | ||
5 | TALER is free software; you can redistribute it and/or modify it under the | 5 | TALER is free software; you can redistribute it and/or modify it under the |
6 | terms of the GNU Affero General Public License as published by the Free Software | 6 | terms of the GNU Affero General Public License as published by the Free Software |