summaryrefslogtreecommitdiff
path: root/src/testing/testing_api_cmd_merchant_get_order.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-10-14 23:02:02 +0200
committerChristian Grothoff <christian@grothoff.org>2020-10-14 23:02:02 +0200
commite98ca0d39480b9cb23f7d0f620d9ca10d9afa7aa (patch)
tree3c44c2f95afab72cb3ff64f7311a74fb26b56135 /src/testing/testing_api_cmd_merchant_get_order.c
parentbf9641e1512338edd48624f23e6be356cf251ef4 (diff)
downloadmerchant-e98ca0d39480b9cb23f7d0f620d9ca10d9afa7aa.tar.gz
merchant-e98ca0d39480b9cb23f7d0f620d9ca10d9afa7aa.tar.bz2
merchant-e98ca0d39480b9cb23f7d0f620d9ca10d9afa7aa.zip
implementing long-polling test commands for wallet get order operation (#6466)
Diffstat (limited to 'src/testing/testing_api_cmd_merchant_get_order.c')
-rw-r--r--src/testing/testing_api_cmd_merchant_get_order.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/testing/testing_api_cmd_merchant_get_order.c b/src/testing/testing_api_cmd_merchant_get_order.c
index 241562e0..002442ac 100644
--- a/src/testing/testing_api_cmd_merchant_get_order.c
+++ b/src/testing/testing_api_cmd_merchant_get_order.c
@@ -64,11 +64,6 @@ struct MerchantGetOrderState
enum TALER_MERCHANT_OrderStatusCode osc;
/**
- * Whether the order was refunded or not.
- */
- bool refunded;
-
- /**
* A NULL-terminated list of refunds associated with this order.
*/
const char **refunds;
@@ -79,11 +74,6 @@ struct MerchantGetOrderState
unsigned int refunds_length;
/**
- * Whether the order was wired or not.
- */
- bool wired;
-
- /**
* A NULL-terminated list of transfers associated with this order.
*/
const char **transfers;
@@ -102,6 +92,16 @@ struct MerchantGetOrderState
* The length of @e forgets.
*/
unsigned int forgets_length;
+
+ /**
+ * Whether the order was refunded or not.
+ */
+ bool refunded;
+
+ /**
+ * Whether the order was wired or not.
+ */
+ bool wired;
};