exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 8d5cc9f550da58610ad220d72f21d930c47ad0a8
parent 1e6efdc5f0028c85a80ef1b16306b0213d5732e7
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Wed, 21 Feb 2018 16:58:18 +0100

denom pub trait made 'const'

Diffstat:
Msrc/exchange-lib/testing_api_cmd_deposit.c | 2+-
Msrc/exchange-lib/testing_api_cmd_payback.c | 4++--
Msrc/exchange-lib/testing_api_cmd_refresh.c | 4++--
Msrc/exchange-lib/testing_api_trait_denom_pub.c | 2+-
Msrc/include/taler_testing_lib.h | 2+-
5 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/exchange-lib/testing_api_cmd_deposit.c b/src/exchange-lib/testing_api_cmd_deposit.c @@ -143,7 +143,7 @@ deposit_run (void *cls, struct TALER_TESTING_Command *this_cmd; struct TALER_CoinSpendPrivateKeyP *coin_priv; struct TALER_CoinSpendPublicKeyP coin_pub; - struct TALER_EXCHANGE_DenomPublicKey *denom_pub; + const struct TALER_EXCHANGE_DenomPublicKey *denom_pub; struct TALER_DenominationSignature *denom_pub_sig; struct TALER_CoinSpendSignatureP coin_sig; struct GNUNET_TIME_Absolute refund_deadline; diff --git a/src/exchange-lib/testing_api_cmd_payback.c b/src/exchange-lib/testing_api_cmd_payback.c @@ -217,7 +217,7 @@ payback_run (void *cls, const struct TALER_TESTING_Command *coin_cmd; struct TALER_CoinSpendPrivateKeyP *coin_priv; struct TALER_DenominationBlindingKeyP *blinding_key; - struct TALER_EXCHANGE_DenomPublicKey *denom_pub; + const struct TALER_EXCHANGE_DenomPublicKey *denom_pub; struct TALER_DenominationSignature *coin_sig; struct TALER_PlanchetSecretsP planchet; @@ -373,7 +373,7 @@ revoke_run (void *cls, { struct RevokeState *rs = cls; const struct TALER_TESTING_Command *coin_cmd; - struct TALER_EXCHANGE_DenomPublicKey *denom_pub; + const struct TALER_EXCHANGE_DenomPublicKey *denom_pub; rs->is = is; /* Get denom pub from trait */ diff --git a/src/exchange-lib/testing_api_cmd_refresh.c b/src/exchange-lib/testing_api_cmd_refresh.c @@ -245,7 +245,7 @@ reveal_cb (void *cls, rrs->fresh_coins = GNUNET_new_array (num_coins, struct FreshCoin); - struct TALER_EXCHANGE_DenomPublicKey *fresh_pks; + const struct TALER_EXCHANGE_DenomPublicKey *fresh_pks; unsigned int i; if (GNUNET_OK != TALER_TESTING_get_trait_denom_pub (melt_cmd, 0, &fresh_pks)) @@ -670,7 +670,7 @@ refresh_melt_run (void *cls, struct TALER_Amount melt_amount; struct TALER_Amount fresh_amount; struct TALER_DenominationSignature *melt_sig; - struct TALER_EXCHANGE_DenomPublicKey *melt_denom_pub; + const struct TALER_EXCHANGE_DenomPublicKey *melt_denom_pub; unsigned int i; const struct MeltDetails *md = &rms->melted_coin; diff --git a/src/exchange-lib/testing_api_trait_denom_pub.c b/src/exchange-lib/testing_api_trait_denom_pub.c @@ -45,7 +45,7 @@ int TALER_TESTING_get_trait_denom_pub (const struct TALER_TESTING_Command *cmd, unsigned int index, - struct TALER_EXCHANGE_DenomPublicKey **denom_pub) + const struct TALER_EXCHANGE_DenomPublicKey **denom_pub) { return cmd->traits (cmd->cls, (void **) denom_pub, diff --git a/src/include/taler_testing_lib.h b/src/include/taler_testing_lib.h @@ -991,7 +991,7 @@ int TALER_TESTING_get_trait_denom_pub (const struct TALER_TESTING_Command *cmd, unsigned int index, - struct TALER_EXCHANGE_DenomPublicKey **dpk); + const struct TALER_EXCHANGE_DenomPublicKey **dpk); /**