diff options
Diffstat (limited to 'src/mint/taler-mint-httpd_db.h')
-rw-r--r-- | src/mint/taler-mint-httpd_db.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/mint/taler-mint-httpd_db.h b/src/mint/taler-mint-httpd_db.h index 093878674..2a03812aa 100644 --- a/src/mint/taler-mint-httpd_db.h +++ b/src/mint/taler-mint-httpd_db.h | |||
@@ -110,6 +110,23 @@ TALER_MINT_db_execute_refresh_commit (struct MHD_Connection *connection, | |||
110 | struct RefreshCommitLink *const* commit_link); | 110 | struct RefreshCommitLink *const* commit_link); |
111 | 111 | ||
112 | 112 | ||
113 | /** | ||
114 | * Execute a /refresh/reveal. | ||
115 | * | ||
116 | * @param connection the MHD connection to handle | ||
117 | * @param refresh_session_pub public key of the refresh session | ||
118 | * @param kappa size of x-dimension of @transfer_privs array plus one (!) | ||
119 | * @param num_oldcoins size of y-dimension of @transfer_privs array | ||
120 | * @param transfer_pubs array with the revealed transfer keys | ||
121 | * @return MHD result code | ||
122 | */ | ||
123 | int | ||
124 | TALER_MINT_db_execute_refresh_reveal (struct MHD_Connection *connection, | ||
125 | const struct GNUNET_CRYPTO_EddsaPublicKey *refresh_session_pub, | ||
126 | unsigned int kappa, | ||
127 | unsigned int num_oldcoins, | ||
128 | struct GNUNET_CRYPTO_EcdsaPrivateKey *const*transfer_privs); | ||
129 | |||
113 | 130 | ||
114 | /** | 131 | /** |
115 | * Execute a /refresh/link. | 132 | * Execute a /refresh/link. |