diff options
author | Marcello Stanisci <stanisci.m@gmail.com> | 2018-02-21 16:58:18 +0100 |
---|---|---|
committer | Marcello Stanisci <stanisci.m@gmail.com> | 2018-02-21 16:58:18 +0100 |
commit | 8d5cc9f550da58610ad220d72f21d930c47ad0a8 (patch) | |
tree | fdd4a325f92fa7418dd6a30ed7420f3dfd893103 /src/exchange-lib/testing_api_cmd_payback.c | |
parent | 1e6efdc5f0028c85a80ef1b16306b0213d5732e7 (diff) |
denom pub trait made 'const'
Diffstat (limited to 'src/exchange-lib/testing_api_cmd_payback.c')
-rw-r--r-- | src/exchange-lib/testing_api_cmd_payback.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/exchange-lib/testing_api_cmd_payback.c b/src/exchange-lib/testing_api_cmd_payback.c index 6c791e56..3a750e7f 100644 --- 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 */ |