diff options
Diffstat (limited to 'src/backend/taler-merchant-httpd_private-post-orders.c')
-rw-r--r-- | src/backend/taler-merchant-httpd_private-post-orders.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/backend/taler-merchant-httpd_private-post-orders.c b/src/backend/taler-merchant-httpd_private-post-orders.c index d23f33bc..45d766cf 100644 --- a/src/backend/taler-merchant-httpd_private-post-orders.c +++ b/src/backend/taler-merchant-httpd_private-post-orders.c | |||
@@ -328,7 +328,6 @@ execute_order (struct MHD_Connection *connection, | |||
328 | struct TALER_Amount total; | 328 | struct TALER_Amount total; |
329 | const char *order_id; | 329 | const char *order_id; |
330 | const char *summary; | 330 | const char *summary; |
331 | const char *fulfillment_url; | ||
332 | json_t *products; | 331 | json_t *products; |
333 | json_t *merchant; | 332 | json_t *merchant; |
334 | struct GNUNET_TIME_Absolute timestamp; | 333 | struct GNUNET_TIME_Absolute timestamp; |
@@ -342,8 +341,6 @@ execute_order (struct MHD_Connection *connection, | |||
342 | &order_id), | 341 | &order_id), |
343 | GNUNET_JSON_spec_string ("summary", | 342 | GNUNET_JSON_spec_string ("summary", |
344 | &summary), | 343 | &summary), |
345 | GNUNET_JSON_spec_string ("fulfillment_url", | ||
346 | &fulfillment_url), | ||
347 | /** | 344 | /** |
348 | * The following entries we don't actually need, | 345 | * The following entries we don't actually need, |
349 | * except to check that the order is well-formed */ | 346 | * except to check that the order is well-formed */ |
@@ -642,8 +639,6 @@ patch_order (struct MHD_Connection *connection, | |||
642 | fulfillment_url = json_string_value (json_object_get (order, | 639 | fulfillment_url = json_string_value (json_object_get (order, |
643 | "fulfillment_url")); | 640 | "fulfillment_url")); |
644 | if (NULL != fulfillment_url) | 641 | if (NULL != fulfillment_url) |
645 | /* The above condition should always be true; if not we do the error | ||
646 | handling later in execute_order() and just skip the logic here. */ | ||
647 | { | 642 | { |
648 | const char *pos; | 643 | const char *pos; |
649 | 644 | ||