summaryrefslogtreecommitdiff
path: root/src/include/taler_merchant_service.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2024-01-06 20:24:05 +0100
committerChristian Grothoff <christian@grothoff.org>2024-01-06 20:24:05 +0100
commitb1ccf194316920ff1898cca8c1a34169470dc164 (patch)
tree9fc065452e83b7bfa2718dfba2d1f4c2aea17faf /src/include/taler_merchant_service.h
parent4d920a818432ba757189f9b03a0886a37901dbb2 (diff)
downloadmerchant-b1ccf194316920ff1898cca8c1a34169470dc164.tar.gz
merchant-b1ccf194316920ff1898cca8c1a34169470dc164.tar.bz2
merchant-b1ccf194316920ff1898cca8c1a34169470dc164.zip
updating logic to use new depositcheck tooling (not yet working)
Diffstat (limited to 'src/include/taler_merchant_service.h')
-rw-r--r--src/include/taler_merchant_service.h24
1 files changed, 5 insertions, 19 deletions
diff --git a/src/include/taler_merchant_service.h b/src/include/taler_merchant_service.h
index aeddefc8..1de69e27 100644
--- a/src/include/taler_merchant_service.h
+++ b/src/include/taler_merchant_service.h
@@ -32,7 +32,7 @@
/**
* Library version (in hex) for compatibility tests.
*/
-#define TALER_MERCHANT_SERVICE_VERSION 0x00090400
+#define TALER_MERCHANT_SERVICE_VERSION 0x00090401
/**
@@ -329,7 +329,7 @@ struct TALER_MERCHANT_ExchangeConfigInfo
* Master public key of the exchange.
*/
struct TALER_MasterPublicKeyP master_pub;
-
+
};
/**
@@ -380,11 +380,11 @@ struct TALER_MERCHANT_ConfigResponse
unsigned int num_exchanges;
/**
- * Array details about exchanges trusted
+ * Array details about exchanges trusted
* by this merchant backend.
*/
const struct TALER_MERCHANT_ExchangeConfigInfo *exchanges;
-
+
} ok;
} details;
};
@@ -947,7 +947,7 @@ TALER_MERCHANT_instance_delete_cancel (
* @param arg request to cancel.
*/
#define TALER_MERCHANT_instance_purge_cancel(arg) \
- TALER_MERCHANT_instance_delete_cancel (arg)
+ TALER_MERCHANT_instance_delete_cancel (arg)
/* *************** Accounts **************** */
@@ -2574,17 +2574,6 @@ struct TALER_MERCHANT_OrderStatusResponse
unsigned int wts_len;
/**
- * Array of wire reports about problems tracking wire transfers.
- * Of length @e wrs_len.
- */
- struct TALER_MERCHANT_WireReport *wrs;
-
- /**
- * Length of the @e wrs array.
- */
- unsigned int wrs_len;
-
- /**
* Details returned by the merchant backend about refunds.
* Of length @e refunds_len.
*/
@@ -2704,8 +2693,6 @@ typedef void
* @param order_id order id to identify the payment
* @param session_id session id for the payment (or NULL if the check is not
* bound to a session)
- * @param transfer if true, obtain the wire transfer status from the exchange.
- * Otherwise, the wire transfer status MAY be returned if it is available.
* @param timeout timeout to use in long polling (how long may the server wait to reply
* before generating an unpaid response). Note that this is just provided to
* the server, we as client will block until the response comes back or until
@@ -2719,7 +2706,6 @@ TALER_MERCHANT_merchant_order_get (struct GNUNET_CURL_Context *ctx,
const char *backend_url,
const char *order_id,
const char *session_id,
- bool transfer,
struct GNUNET_TIME_Relative timeout,
TALER_MERCHANT_OrderMerchantGetCallback cb,
void *cb_cls);