diff options
Diffstat (limited to 'src/auditor/taler-auditor-httpd_deposit-confirmation.c')
-rw-r--r-- | src/auditor/taler-auditor-httpd_deposit-confirmation.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/auditor/taler-auditor-httpd_deposit-confirmation.c b/src/auditor/taler-auditor-httpd_deposit-confirmation.c index 5f84a7253..1039164c4 100644 --- a/src/auditor/taler-auditor-httpd_deposit-confirmation.c +++ b/src/auditor/taler-auditor-httpd_deposit-confirmation.c | |||
@@ -155,7 +155,7 @@ verify_and_execute_deposit_confirmation ( | |||
155 | .purpose.size = htonl (sizeof (struct TALER_DepositConfirmationPS)), | 155 | .purpose.size = htonl (sizeof (struct TALER_DepositConfirmationPS)), |
156 | .h_contract_terms = dc->h_contract_terms, | 156 | .h_contract_terms = dc->h_contract_terms, |
157 | .h_wire = dc->h_wire, | 157 | .h_wire = dc->h_wire, |
158 | .timestamp = GNUNET_TIME_absolute_hton (dc->timestamp), | 158 | .exchange_timestamp = GNUNET_TIME_absolute_hton (dc->exchange_timestamp), |
159 | .refund_deadline = GNUNET_TIME_absolute_hton (dc->refund_deadline), | 159 | .refund_deadline = GNUNET_TIME_absolute_hton (dc->refund_deadline), |
160 | .coin_pub = dc->coin_pub, | 160 | .coin_pub = dc->coin_pub, |
161 | .merchant = dc->merchant | 161 | .merchant = dc->merchant |
@@ -224,7 +224,8 @@ TAH_DEPOSIT_CONFIRMATION_handler (struct TAH_RequestHandler *rh, | |||
224 | struct GNUNET_JSON_Specification spec[] = { | 224 | struct GNUNET_JSON_Specification spec[] = { |
225 | GNUNET_JSON_spec_fixed_auto ("h_contract_terms", &dc.h_contract_terms), | 225 | GNUNET_JSON_spec_fixed_auto ("h_contract_terms", &dc.h_contract_terms), |
226 | GNUNET_JSON_spec_fixed_auto ("h_wire", &dc.h_wire), | 226 | GNUNET_JSON_spec_fixed_auto ("h_wire", &dc.h_wire), |
227 | GNUNET_JSON_spec_absolute_time ("timestamp", &dc.timestamp), | 227 | GNUNET_JSON_spec_absolute_time ("exchange_timestamp", |
228 | &dc.exchange_timestamp), | ||
228 | GNUNET_JSON_spec_absolute_time ("refund_deadline", &dc.refund_deadline), | 229 | GNUNET_JSON_spec_absolute_time ("refund_deadline", &dc.refund_deadline), |
229 | TALER_JSON_spec_amount ("amount_without_fee", &dc.amount_without_fee), | 230 | TALER_JSON_spec_amount ("amount_without_fee", &dc.amount_without_fee), |
230 | GNUNET_JSON_spec_fixed_auto ("coin_pub", &dc.coin_pub), | 231 | GNUNET_JSON_spec_fixed_auto ("coin_pub", &dc.coin_pub), |