summaryrefslogtreecommitdiff
path: root/src/backend/taler-merchant-httpd_private-post-orders.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/taler-merchant-httpd_private-post-orders.c')
-rw-r--r--src/backend/taler-merchant-httpd_private-post-orders.c5
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,
struct TALER_Amount total;
const char *order_id;
const char *summary;
- const char *fulfillment_url;
json_t *products;
json_t *merchant;
struct GNUNET_TIME_Absolute timestamp;
@@ -342,8 +341,6 @@ execute_order (struct MHD_Connection *connection,
&order_id),
GNUNET_JSON_spec_string ("summary",
&summary),
- GNUNET_JSON_spec_string ("fulfillment_url",
- &fulfillment_url),
/**
* The following entries we don't actually need,
* except to check that the order is well-formed */
@@ -642,8 +639,6 @@ patch_order (struct MHD_Connection *connection,
fulfillment_url = json_string_value (json_object_get (order,
"fulfillment_url"));
if (NULL != fulfillment_url)
- /* The above condition should always be true; if not we do the error
- handling later in execute_order() and just skip the logic here. */
{
const char *pos;