summaryrefslogtreecommitdiff
path: root/src/mint/taler-mint-httpd_responses.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-03-28 16:51:54 +0100
committerChristian Grothoff <christian@grothoff.org>2015-03-28 16:51:54 +0100
commitd61dbb310995476ff977bb5da30d8f87dd161b6f (patch)
treeb4b7de6cbe85d080544acb9412d86190ebcd9c2e /src/mint/taler-mint-httpd_responses.c
parent15196c9bd4ed871f27b2b9319b03cde3bee29797 (diff)
downloadexchange-d61dbb310995476ff977bb5da30d8f87dd161b6f.tar.gz
exchange-d61dbb310995476ff977bb5da30d8f87dd161b6f.tar.bz2
exchange-d61dbb310995476ff977bb5da30d8f87dd161b6f.zip
fix use of struct TALER_WithdrawRequestPS
Diffstat (limited to 'src/mint/taler-mint-httpd_responses.c')
-rw-r--r--src/mint/taler-mint-httpd_responses.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mint/taler-mint-httpd_responses.c b/src/mint/taler-mint-httpd_responses.c
index 3ba9fdb67..e2b982b9f 100644
--- a/src/mint/taler-mint-httpd_responses.c
+++ b/src/mint/taler-mint-httpd_responses.c
@@ -501,6 +501,10 @@ compile_reserve_history (const struct TALER_MINTDB_ReserveHistory *rh,
wr.purpose.purpose = htonl (TALER_SIGNATURE_WALLET_RESERVE_WITHDRAW);
wr.purpose.size = htonl (sizeof (struct TALER_WithdrawRequestPS));
wr.reserve_pub = pos->details.withdraw->reserve_pub;
+ TALER_amount_hton (&wr.amount_with_fee,
+ &pos->details.withdraw->amount_with_fee);
+ TALER_amount_hton (&wr.withdraw_fee,
+ &pos->details.withdraw->withdraw_fee);
GNUNET_CRYPTO_rsa_public_key_hash (pos->details.withdraw->denom_pub.rsa_public_key,
&wr.h_denomination_pub);
wr.h_coin_envelope = pos->details.withdraw->h_coin_envelope;