diff options
author | Christian Grothoff <christian@grothoff.org> | 2022-02-13 12:44:09 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2022-02-13 12:44:09 +0100 |
commit | 9b8c350d4dc38256fe746ef31c480bc4f50ac4c8 (patch) | |
tree | f8dcdd0c0b76d2ee9e91865f8cc7718131800354 /src/include/taler_exchange_service.h | |
parent | f6ecf7458ab4a0e23233439ca6c878fd93921083 (diff) |
-remove redundancies in the refresh-melt computation and fix uninitialized bks return value
Diffstat (limited to 'src/include/taler_exchange_service.h')
-rw-r--r-- | src/include/taler_exchange_service.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/include/taler_exchange_service.h b/src/include/taler_exchange_service.h index 3961aaa10..8c1b4bde2 100644 --- a/src/include/taler_exchange_service.h +++ b/src/include/taler_exchange_service.h @@ -1647,12 +1647,6 @@ struct TALER_EXCHANGE_MeltBlindingDetail */ struct TALER_ExchangeWithdrawValues alg_value; - /** - * Blinding keys used to blind the fresh coins - */ - /* FIXME: uninitialized! */ - union TALER_DenominationBlindingKeyP bks; - }; @@ -1773,6 +1767,11 @@ struct TALER_EXCHANGE_RevealedCoinInfo struct TALER_PlanchetMasterSecretP ps; /** + * Blinding keys used to blind the fresh coin. + */ + union TALER_DenominationBlindingKeyP bks; + + /** * Signature affirming the validity of the coin. */ struct TALER_DenominationSignature sig; |