summaryrefslogtreecommitdiff
path: root/src/exchange/taler-exchange-httpd_refreshes_reveal.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-03-22 21:36:42 +0100
committerChristian Grothoff <christian@grothoff.org>2020-03-22 21:36:42 +0100
commit9add4cf40501b37d435830f2c0c718bf0ff2db72 (patch)
tree062fa3276820909598eaa9b860fd0ad7696fcc63 /src/exchange/taler-exchange-httpd_refreshes_reveal.c
parenta90ea10d352489e27e8243c28162360d400fc31c (diff)
downloadexchange-9add4cf40501b37d435830f2c0c718bf0ff2db72.tar.gz
exchange-9add4cf40501b37d435830f2c0c718bf0ff2db72.tar.bz2
exchange-9add4cf40501b37d435830f2c0c718bf0ff2db72.zip
doxygen updates
Diffstat (limited to 'src/exchange/taler-exchange-httpd_refreshes_reveal.c')
-rw-r--r--src/exchange/taler-exchange-httpd_refreshes_reveal.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/exchange/taler-exchange-httpd_refreshes_reveal.c b/src/exchange/taler-exchange-httpd_refreshes_reveal.c
index 876797bab..00b8592d3 100644
--- a/src/exchange/taler-exchange-httpd_refreshes_reveal.c
+++ b/src/exchange/taler-exchange-httpd_refreshes_reveal.c
@@ -704,9 +704,9 @@ resolve_refreshes_reveal_denominations (struct TEH_KS_StateHandle *key_state,
{
rctx->ev_sigs[i].rsa_signature
= GNUNET_CRYPTO_rsa_sign_blinded (
- rctx->dkis[i]->denom_priv.rsa_private_key,
- rctx->rcds[i].coin_ev,
- rctx->rcds[i].coin_ev_size);
+ rctx->dkis[i]->denom_priv.rsa_private_key,
+ rctx->rcds[i].coin_ev,
+ rctx->rcds[i].coin_ev_size);
if (NULL == rctx->ev_sigs[i].rsa_signature)
{
GNUNET_break (0);
@@ -897,9 +897,9 @@ handle_refreshes_reveal_json (struct MHD_Connection *connection,
* Handle a "/refreshes/$RCH/reveal" request. This time, the client reveals the
* private transfer keys except for the cut-and-choose value returned from
* "/coins/$COIN_PUB/melt". This function parses the revealed keys and secrets and
- * ultimately passes everything to #resolve_refreshes_reveal_denominations()
+ * ultimately passes everything to resolve_refreshes_reveal_denominations()
* which will verify that the revealed information is valid then runs the
- * transaction in #refreshes_reveal_transaction() and finally returns the signed
+ * transaction in refreshes_reveal_transaction() and finally returns the signed
* refreshed coins.
*
* @param rh context of the handler