diff options
author | Christian Grothoff <christian@grothoff.org> | 2017-10-31 22:59:34 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2017-10-31 22:59:34 +0100 |
commit | 6b4313da618a164cbb68932fc6ccfe40ab5bfc62 (patch) | |
tree | 3ad28246f81ce3f14903faa6b998724fe738cbb7 | |
parent | beeece1d6a011a87d43318b3d829d9a243f21b58 (diff) |
fix stupid ordering issue after refactoring
-rw-r--r-- | src/exchange-lib/exchange_api_reserve.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/exchange-lib/exchange_api_reserve.c b/src/exchange-lib/exchange_api_reserve.c index c0f77219b..35fd0e018 100644 --- a/src/exchange-lib/exchange_api_reserve.c +++ b/src/exchange-lib/exchange_api_reserve.c @@ -925,7 +925,7 @@ handle_reserve_withdraw_finished (void *cls, check the signatures in the history... */ if (GNUNET_OK != reserve_withdraw_payment_required (wsh, - json)) + json)) { GNUNET_break_op (0); response_code = 0; @@ -1075,15 +1075,12 @@ TALER_EXCHANGE_reserve_withdraw (struct TALER_EXCHANGE_Handle *exchange, void *res_cb_cls) { struct TALER_Amount amount_with_fee; - struct TALER_ReservePublicKeyP reserve_pub; struct TALER_ReserveSignatureP reserve_sig; struct TALER_WithdrawRequestPS req; struct TALER_PlanchetDetail pd; struct TALER_EXCHANGE_ReserveWithdrawHandle *wsh; GNUNET_CRYPTO_eddsa_key_get_public (&reserve_priv->eddsa_priv, - &reserve_pub.eddsa_pub); - GNUNET_CRYPTO_eddsa_key_get_public (&reserve_priv->eddsa_priv, &req.reserve_pub.eddsa_pub); req.purpose.size = htonl (sizeof (struct TALER_WithdrawRequestPS)); req.purpose.purpose = htonl (TALER_SIGNATURE_WALLET_RESERVE_WITHDRAW); @@ -1100,7 +1097,6 @@ TALER_EXCHANGE_reserve_withdraw (struct TALER_EXCHANGE_Handle *exchange, &amount_with_fee); TALER_amount_hton (&req.withdraw_fee, &pk->fee_withdraw); - req.h_denomination_pub = pd.denom_pub_hash; if (GNUNET_OK != TALER_planchet_prepare (&pk->key, ps, @@ -1109,6 +1105,7 @@ TALER_EXCHANGE_reserve_withdraw (struct TALER_EXCHANGE_Handle *exchange, GNUNET_break_op (0); return NULL; } + req.h_denomination_pub = pd.denom_pub_hash; GNUNET_CRYPTO_hash (pd.coin_ev, pd.coin_ev_size, &req.h_coin_envelope); |