aboutsummaryrefslogtreecommitdiff
path: root/src/include/taler_exchange_service.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/taler_exchange_service.h')
-rw-r--r--src/include/taler_exchange_service.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/include/taler_exchange_service.h b/src/include/taler_exchange_service.h
index 320123041..f94b8253d 100644
--- a/src/include/taler_exchange_service.h
+++ b/src/include/taler_exchange_service.h
@@ -1691,22 +1691,22 @@ struct TALER_EXCHANGE_DepositData
1691{ 1691{
1692 1692
1693 /** 1693 /**
1694 * exchange key used to sign, NULL if exchange did not 1694 * exchange key used to sign, all zeros if exchange did not
1695 * yet execute the transaction 1695 * yet execute the transaction
1696 */ 1696 */
1697 const struct TALER_ExchangePublicKeyP *exchange_pub; 1697 struct TALER_ExchangePublicKeyP exchange_pub;
1698 1698
1699 /** 1699 /**
1700 * signature from the exchange over the deposit data, NULL if exchange did not 1700 * signature from the exchange over the deposit data, all zeros if exchange did not
1701 * yet execute the transaction 1701 * yet execute the transaction
1702 */ 1702 */
1703 const struct TALER_ExchangeSignatureP *exchange_sig; 1703 struct TALER_ExchangeSignatureP exchange_sig;
1704 1704
1705 /** 1705 /**
1706 * wire transfer identifier used by the exchange, NULL if exchange did not 1706 * wire transfer identifier used by the exchange, all zeros if exchange did not
1707 * yet execute the transaction 1707 * yet execute the transaction
1708 */ 1708 */
1709 const struct TALER_WireTransferIdentifierRawP *wtid; 1709 struct TALER_WireTransferIdentifierRawP wtid;
1710 1710
1711 /** 1711 /**
1712 * actual or planned execution time for the wire transfer 1712 * actual or planned execution time for the wire transfer
@@ -1714,10 +1714,10 @@ struct TALER_EXCHANGE_DepositData
1714 struct GNUNET_TIME_Absolute execution_time; 1714 struct GNUNET_TIME_Absolute execution_time;
1715 1715
1716 /** 1716 /**
1717 * contribution to the total amount by this coin, NULL if exchange did not 1717 * contribution to the total amount by this coin, all zeros if exchange did not
1718 * yet execute the transaction 1718 * yet execute the transaction
1719 */ 1719 */
1720 const struct TALER_Amount *coin_contribution; 1720 struct TALER_Amount coin_contribution;
1721}; 1721};
1722 1722
1723 1723