diff options
Diffstat (limited to 'src/mint/taler-mint-httpd_db.h')
-rw-r--r-- | src/mint/taler-mint-httpd_db.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/mint/taler-mint-httpd_db.h b/src/mint/taler-mint-httpd_db.h index 91d40e44c..84e65eef2 100644 --- a/src/mint/taler-mint-httpd_db.h +++ b/src/mint/taler-mint-httpd_db.h | |||
@@ -114,14 +114,12 @@ struct MeltDetails | |||
114 | * @param refresh_session_pub public key of the refresh session | 114 | * @param refresh_session_pub public key of the refresh session |
115 | * @param client_signature signature of the client (matching @a refresh_session_pub) | 115 | * @param client_signature signature of the client (matching @a refresh_session_pub) |
116 | * over the melting request | 116 | * over the melting request |
117 | * @param num_new_denoms number of entries in @a denom_pubs | 117 | * @param num_new_denoms number of entries in @a denom_pubs, size of y-dimension of @commit_coin array |
118 | * @param denum_pubs array of public denomination keys for the refresh (?) | 118 | * @param denum_pubs array of public denomination keys for the refresh (?) |
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, size of y-dimension of @commit_link array |
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 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 |
123 | * @param num_oldcoins size of y-dimension of @commit_coin array | ||
124 | * @param num_newcoins size of y-dimension of @commit_link array | ||
125 | * @param commit_coin 2d array of coin commitments (what the mint is to sign | 123 | * @param commit_coin 2d array of coin commitments (what the mint is to sign |
126 | * once the "/refres/reveal" of cut and choose is done) | 124 | * once the "/refres/reveal" of cut and choose is done) |
127 | * @param commit_link 2d array of coin link commitments (what the mint is | 125 | * @param commit_link 2d array of coin link commitments (what the mint is |
@@ -141,8 +139,6 @@ TALER_MINT_db_execute_refresh_melt (struct MHD_Connection *connection, | |||
141 | const struct TALER_CoinPublicInfo *coin_public_infos, | 139 | const struct TALER_CoinPublicInfo *coin_public_infos, |
142 | const struct MeltDetails *coin_melt_details, | 140 | const struct MeltDetails *coin_melt_details, |
143 | unsigned int kappa, | 141 | unsigned int kappa, |
144 | unsigned int num_oldcoins, | ||
145 | unsigned int num_newcoins, | ||
146 | struct RefreshCommitCoin *const* commit_coin, | 142 | struct RefreshCommitCoin *const* commit_coin, |
147 | struct RefreshCommitLink *const* commit_link); | 143 | struct RefreshCommitLink *const* commit_link); |
148 | 144 | ||