summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-07-22 20:14:26 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-07-22 20:14:26 +0530
commit536f91572e268e34b0b007aca3a047c445e06a7c (patch)
treedafe3d89042e67bc573cacad25b022b2c31ea05d /src/include
parentdbc78e917cb1cfd8eb5d0f5b1749fcdb2f8006ad (diff)
downloadmerchant-536f91572e268e34b0b007aca3a047c445e06a7c.tar.gz
merchant-536f91572e268e34b0b007aca3a047c445e06a7c.tar.bz2
merchant-536f91572e268e34b0b007aca3a047c445e06a7c.zip
adapt to exchange refund response message changes
Diffstat (limited to 'src/include')
-rw-r--r--src/include/taler_merchant_service.h6
-rw-r--r--src/include/taler_merchantdb_plugin.h2
2 files changed, 0 insertions, 8 deletions
diff --git a/src/include/taler_merchant_service.h b/src/include/taler_merchant_service.h
index 0e3ec5c4..9a7ceb39 100644
--- a/src/include/taler_merchant_service.h
+++ b/src/include/taler_merchant_service.h
@@ -2103,12 +2103,6 @@ struct TALER_MERCHANT_AbortedCoin
* Exchange public key affirming the refund.
*/
struct TALER_ExchangePublicKeyP exchange_pub;
-
- /**
- * Refund fee charged by the exchange. The API will have checked the
- * signature, but NOT that this is the expected fee.
- */
- struct TALER_Amount refund_fee;
};
diff --git a/src/include/taler_merchantdb_plugin.h b/src/include/taler_merchantdb_plugin.h
index 2532289f..9ee61e97 100644
--- a/src/include/taler_merchantdb_plugin.h
+++ b/src/include/taler_merchantdb_plugin.h
@@ -1408,7 +1408,6 @@ struct TALER_MERCHANTDB_Plugin
*
* @param cls closure
* @param refund_serial serial number of the refund
- * @param refund_fee refund fee the exchange said it charged
* @param exchange_sig signature from exchange that coin was refunded
* @param exchange_pub signing key that was used for @a exchange_sig
* @return transaction status
@@ -1416,7 +1415,6 @@ struct TALER_MERCHANTDB_Plugin
enum GNUNET_DB_QueryStatus
(*insert_refund_proof)(void *cls,
uint64_t refund_serial,
- const struct TALER_Amount *refund_fee,
const struct TALER_ExchangeSignatureP *exchange_sig,
const struct TALER_ExchangePublicKeyP *exchange_pub);