summaryrefslogtreecommitdiff
path: root/src/include/taler_merchantdb_plugin.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-06-06 21:40:49 +0200
committerChristian Grothoff <christian@grothoff.org>2020-06-06 21:40:49 +0200
commitfbd93498c3a1135986470c869a9db1a75b8886c4 (patch)
tree26ffc49bd609197c55c29b9e5d49925144c238ba /src/include/taler_merchantdb_plugin.h
parentab6ee1680d16905ef938380e49c86710fb5c7155 (diff)
downloadmerchant-fbd93498c3a1135986470c869a9db1a75b8886c4.tar.gz
merchant-fbd93498c3a1135986470c869a9db1a75b8886c4.tar.bz2
merchant-fbd93498c3a1135986470c869a9db1a75b8886c4.zip
work on getting TransactionWireTransfer reply built
Diffstat (limited to 'src/include/taler_merchantdb_plugin.h')
-rw-r--r--src/include/taler_merchantdb_plugin.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/include/taler_merchantdb_plugin.h b/src/include/taler_merchantdb_plugin.h
index e508f56b..44a316ad 100644
--- a/src/include/taler_merchantdb_plugin.h
+++ b/src/include/taler_merchantdb_plugin.h
@@ -341,7 +341,11 @@ typedef void
* FIXME: not implemented yet!
*
* @param cls closure
- * @param wtid wire transfer subject of the wire transfer for the coin
+ * @param wtid wire transfer subject of the wire transfer for the coin,
+ * or NULL if transfer is yet to be made
+ * @param exchange_url base URL of the exchange that made the payment
+ * @param execution_time when was the payment made (or in the future,
+ * when is it expected to be made)
* @param deposit_value contribution of the coin to the total wire transfer value
* @param deposit_fee deposit fee charged by the exchange for the coin
* @param transfer_confirmed did the merchant confirm that a wire transfer with
@@ -351,6 +355,8 @@ typedef void
(*TALER_MERCHANTDB_OrderTransferDetailsCallback)(
void *cls,
const struct TALER_WireTransferIdentifierRawP *wtid,
+ const char *exchange_url,
+ struct GNUNET_TIME_Absolute execution_time,
const struct TALER_Amount *deposit_value,
const struct TALER_Amount *deposit_fee,
bool transfer_confirmed);