diff options
author | Christian Grothoff <grothoff@gnunet.org> | 2021-10-25 18:37:06 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-10-27 09:23:13 +0200 |
commit | 74234f75a41222f6a630106be75a799f4f02ec1d (patch) | |
tree | 0462b4a2c46d157cdeb07236c0b94962c9e185d9 /src/exchange/taler-exchange-httpd_deposit.c | |
parent | f0951d34ddd525a04bcb9daabbc55bd1ced2575e (diff) |
-work on FTBFS
Diffstat (limited to 'src/exchange/taler-exchange-httpd_deposit.c')
-rw-r--r-- | src/exchange/taler-exchange-httpd_deposit.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/exchange/taler-exchange-httpd_deposit.c b/src/exchange/taler-exchange-httpd_deposit.c index 38dfd447..bff0e6a2 100644 --- a/src/exchange/taler-exchange-httpd_deposit.c +++ b/src/exchange/taler-exchange-httpd_deposit.c @@ -57,8 +57,8 @@ static MHD_RESULT reply_deposit_success (struct MHD_Connection *connection, const struct TALER_CoinSpendPublicKeyP *coin_pub, - const struct GNUNET_HashCode *h_wire, - const struct GNUNET_HashCode *h_contract_terms, + const struct TALER_MerchantWireHash *h_wire, + const struct TALER_PrivateContractHash *h_contract_terms, struct GNUNET_TIME_Absolute exchange_timestamp, struct GNUNET_TIME_Absolute refund_deadline, const struct TALER_MerchantPublicKeyP *merchant, @@ -321,9 +321,10 @@ TEH_handler_deposit (struct MHD_Connection *connection, json_t *wire; struct DepositContext dc; struct TALER_EXCHANGEDB_Deposit deposit; - struct GNUNET_HashCode my_h_wire; + struct TALER_MerchantWireHash my_h_wire; struct GNUNET_JSON_Specification spec[] = { - GNUNET_JSON_spec_json ("wire", &wire), + GNUNET_JSON_spec_json ("wire", + &wire), TALER_JSON_spec_amount ("contribution", TEH_currency, &deposit.amount_with_fee), |