diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-08-08 23:03:26 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-08-08 23:03:26 +0200 |
commit | 7e47853a5e2bbba529fad06a349d67439d03e5ab (patch) | |
tree | 28b13ba065eaee768bfe3ca6a02337c5ec8ea15a /src/include | |
parent | cb47e13322e3fefac95a80b4a32d2551f62202d1 (diff) |
implement parse_refresh_link_ok
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/taler_mint_service.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/taler_mint_service.h b/src/include/taler_mint_service.h index fa1f7a507..ea06d95fb 100644 --- a/src/include/taler_mint_service.h +++ b/src/include/taler_mint_service.h @@ -841,6 +841,7 @@ struct TALER_MINT_RefreshLinkHandle; * @param num_coins number of fresh coins created, length of the @a sigs and @a coin_privs arrays, 0 if the operation failed * @param coin_privs array of @a num_coins private keys for the coins that were created, NULL on error * @param sigs array of signature over @a num_coins coins, NULL on error + * @param pubs array of public keys for the @a sigs, NULL on error * @param full_response full response from the mint (for logging, in case of errors) */ typedef void @@ -849,6 +850,7 @@ typedef void unsigned int num_coins, const struct TALER_CoinSpendPrivateKeyP *coin_privs, const struct TALER_DenominationSignature *sigs, + const struct TALER_DenominationPublicKey *pubs, json_t *full_response); |