diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-01-09 09:50:35 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-01-09 09:50:35 +0100 |
commit | 9e206f533f28a1ea1a4ac57c138924e61f4ae80c (patch) | |
tree | b9cd78059bc7dfa9486e55dd04820db59ebff2c0 /src/lib | |
parent | ea9c15026a264953625472e14a3707f1131c5552 (diff) |
H_wire -> h_wire (#6032)
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/auditor_api_deposit_confirmation.c | 2 | ||||
-rw-r--r-- | src/lib/exchange_api_deposit.c | 4 | ||||
-rw-r--r-- | src/lib/exchange_api_track_transaction.c | 4 | ||||
-rw-r--r-- | src/lib/exchange_api_track_transfer.c | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/auditor_api_deposit_confirmation.c b/src/lib/auditor_api_deposit_confirmation.c index 73173cc31..a02c660e4 100644 --- a/src/lib/auditor_api_deposit_confirmation.c +++ b/src/lib/auditor_api_deposit_confirmation.c @@ -312,7 +312,7 @@ TALER_AUDITOR_deposit_confirmation (struct TALER_AUDITOR_Handle *auditor, } deposit_confirmation_obj - = json_pack ("{s:o, s:o," /* H_wire, h_contract_terms */ + = json_pack ("{s:o, s:o," /* h_wire, h_contract_terms */ " s:o, s:o," /* timestamp, refund_deadline */ " s:o, s:o," /* amount_without_fees, coin_pub */ " s:o, s:o," /* merchant_pub, exchange_sig */ diff --git a/src/lib/exchange_api_deposit.c b/src/lib/exchange_api_deposit.c index 30bb6c976..69584ee24 100644 --- a/src/lib/exchange_api_deposit.c +++ b/src/lib/exchange_api_deposit.c @@ -554,7 +554,7 @@ TALER_EXCHANGE_deposit (struct TALER_EXCHANGE_Handle *exchange, } deposit_obj = json_pack ("{s:o, s:O," /* f/wire */ - " s:o, s:o," /* H_wire, h_contract_terms */ + " s:o, s:o," /* h_wire, h_contract_terms */ " s:o, s:o," /* coin_pub, denom_pub */ " s:o, s:o," /* ub_sig, timestamp */ " s:o," /* merchant_pub */ @@ -562,7 +562,7 @@ TALER_EXCHANGE_deposit (struct TALER_EXCHANGE_Handle *exchange, " s:o}", /* coin_sig */ "contribution", TALER_JSON_from_amount (amount), "wire", wire_details, - "H_wire", GNUNET_JSON_from_data_auto (&h_wire), + "h_wire", GNUNET_JSON_from_data_auto (&h_wire), "h_contract_terms", GNUNET_JSON_from_data_auto ( h_contract_terms), "coin_pub", GNUNET_JSON_from_data_auto (coin_pub), diff --git a/src/lib/exchange_api_track_transaction.c b/src/lib/exchange_api_track_transaction.c index de3f98b65..ed8185e41 100644 --- a/src/lib/exchange_api_track_transaction.c +++ b/src/lib/exchange_api_track_transaction.c @@ -301,10 +301,10 @@ TALER_EXCHANGE_track_transaction (struct TALER_EXCHANGE_Handle *exchange, GNUNET_CRYPTO_eddsa_sign (&merchant_priv->eddsa_priv, &dtp.purpose, &merchant_sig.eddsa_sig)); - deposit_wtid_obj = json_pack ("{s:o, s:o," /* H_wire, h_contract_terms */ + deposit_wtid_obj = json_pack ("{s:o, s:o," /* h_wire, h_contract_terms */ " s:o," /* coin_pub */ " s:o, s:o}", /* merchant_pub, merchant_sig */ - "H_wire", GNUNET_JSON_from_data_auto (h_wire), + "h_wire", GNUNET_JSON_from_data_auto (h_wire), "h_contract_terms", GNUNET_JSON_from_data_auto ( h_contract_terms), "coin_pub", GNUNET_JSON_from_data_auto ( diff --git a/src/lib/exchange_api_track_transfer.c b/src/lib/exchange_api_track_transfer.c index 2c90bf199..8720793a2 100644 --- a/src/lib/exchange_api_track_transfer.c +++ b/src/lib/exchange_api_track_transfer.c @@ -98,7 +98,7 @@ check_track_transfer_response_ok (struct TALER_JSON_spec_amount ("total", &total_amount), TALER_JSON_spec_amount ("wire_fee", &wire_fee), GNUNET_JSON_spec_fixed_auto ("merchant_pub", &merchant_pub), - GNUNET_JSON_spec_fixed_auto ("H_wire", &h_wire), + GNUNET_JSON_spec_fixed_auto ("h_wire", &h_wire), GNUNET_JSON_spec_absolute_time ("execution_time", &exec_time), GNUNET_JSON_spec_json ("deposits", &details_j), GNUNET_JSON_spec_fixed_auto ("exchange_sig", &exchange_sig), |