aboutsummaryrefslogtreecommitdiff
path: root/src/include/taler_exchange_service.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/taler_exchange_service.h')
-rw-r--r--src/include/taler_exchange_service.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/taler_exchange_service.h b/src/include/taler_exchange_service.h
index a344771cf..3fc5f353b 100644
--- a/src/include/taler_exchange_service.h
+++ b/src/include/taler_exchange_service.h
@@ -155,10 +155,10 @@ struct TALER_EXCHANGE_DenomPublicKey
155 struct TALER_Amount fee_refund; 155 struct TALER_Amount fee_refund;
156 156
157 /** 157 /**
158 * Set to #GNUNET_YES if this denomination key has been 158 * Set to true if this denomination key has been
159 * revoked by the exchange. 159 * revoked by the exchange.
160 */ 160 */
161 int revoked; 161 bool revoked;
162}; 162};
163 163
164 164
@@ -1869,7 +1869,7 @@ typedef void
1869 * @param pk kind of coin to pay back 1869 * @param pk kind of coin to pay back
1870 * @param denom_sig signature over the coin by the exchange using @a pk 1870 * @param denom_sig signature over the coin by the exchange using @a pk
1871 * @param ps secret internals of the original planchet 1871 * @param ps secret internals of the original planchet
1872 * @param was_refreshed #GNUNET_YES if the coin in @a ps was refreshed 1872 * @param was_refreshed true if the coin in @a ps was refreshed
1873 * @param recoup_cb the callback to call when the final result for this request is available 1873 * @param recoup_cb the callback to call when the final result for this request is available
1874 * @param recoup_cb_cls closure for @a recoup_cb 1874 * @param recoup_cb_cls closure for @a recoup_cb
1875 * @return NULL 1875 * @return NULL
@@ -1881,7 +1881,7 @@ TALER_EXCHANGE_recoup (struct TALER_EXCHANGE_Handle *exchange,
1881 const struct TALER_EXCHANGE_DenomPublicKey *pk, 1881 const struct TALER_EXCHANGE_DenomPublicKey *pk,
1882 const struct TALER_DenominationSignature *denom_sig, 1882 const struct TALER_DenominationSignature *denom_sig,
1883 const struct TALER_PlanchetSecretsP *ps, 1883 const struct TALER_PlanchetSecretsP *ps,
1884 int was_refreshed, 1884 bool was_refreshed,
1885 TALER_EXCHANGE_RecoupResultCallback recoup_cb, 1885 TALER_EXCHANGE_RecoupResultCallback recoup_cb,
1886 void *recoup_cb_cls); 1886 void *recoup_cb_cls);
1887 1887