summaryrefslogtreecommitdiff
path: root/src/testing/testing_api_cmd_refund.c
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-07-22 19:29:27 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-07-22 19:29:27 +0530
commit93923c168d7472bf977c1dedc0a01c436769bf6e (patch)
treedccf694b79b08490f54c2a2e26f2369ce6b376af /src/testing/testing_api_cmd_refund.c
parent70090ed9a86a5513f6b7396b232ebb1b19261469 (diff)
downloadexchange-93923c168d7472bf977c1dedc0a01c436769bf6e.tar.gz
exchange-93923c168d7472bf977c1dedc0a01c436769bf6e.tar.bz2
exchange-93923c168d7472bf977c1dedc0a01c436769bf6e.zip
remove refund_fee from refund confirmation message and signature
Diffstat (limited to 'src/testing/testing_api_cmd_refund.c')
-rw-r--r--src/testing/testing_api_cmd_refund.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/testing/testing_api_cmd_refund.c b/src/testing/testing_api_cmd_refund.c
index aeb597718..30f257696 100644
--- a/src/testing/testing_api_cmd_refund.c
+++ b/src/testing/testing_api_cmd_refund.c
@@ -76,7 +76,6 @@ struct RefundState
*
* @param cls closure
* @param hr HTTP response details
- * @param refund_fee the refund fee the exchange charged
* @param exchange_pub public key the exchange
* used for signing @a obj.
* @param exchange_sig actual signature confirming the refund
@@ -84,7 +83,6 @@ struct RefundState
static void
refund_cb (void *cls,
const struct TALER_EXCHANGE_HttpResponse *hr,
- const struct TALER_Amount *refund_fee,
const struct TALER_ExchangePublicKeyP *exchange_pub,
const struct TALER_ExchangeSignatureP *exchange_sig)
{
@@ -92,7 +90,6 @@ refund_cb (void *cls,
struct RefundState *rs = cls;
struct TALER_TESTING_Command *refund_cmd;
- (void) refund_fee;
refund_cmd = &rs->is->commands[rs->is->ip];
rs->rh = NULL;
if (rs->expected_response_code != hr->http_status)