commit 79801d5d3a192484ca09a49a7e171211109647bf parent 407fd7eb725ce58515c5feab2a61ed4adb596e80 Author: Christian Grothoff <christian@grothoff.org> Date: Mon, 9 May 2022 08:38:23 +0200 -fix assertion Diffstat:
| M | src/backend/taler-merchant-httpd_private-get-orders.c | | | 3 | ++- |
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/backend/taler-merchant-httpd_private-get-orders.c b/src/backend/taler-merchant-httpd_private-get-orders.c @@ -323,7 +323,8 @@ add_order (void *cls, &contract_terms, &os, NULL); - GNUNET_break (os == order_serial); + if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT == qs) + GNUNET_break (os == order_serial); } if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qs) {