diff options
author | Christian Grothoff <christian@grothoff.org> | 2022-08-14 19:10:19 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2022-08-14 19:10:19 +0200 |
commit | 1a3793cb1c5e94d2d900835102ee5929a229986c (patch) | |
tree | 12500af1ae43ce2396eb2caa11a9c8c86a87f063 /src/lib | |
parent | f5b99b5282e50bfaf744941d22bb5766cec76cb9 (diff) |
-regenerate DBs
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/exchange_api_batch_withdraw.c | 2 | ||||
-rw-r--r-- | src/lib/exchange_api_deposits_get.c | 4 | ||||
-rw-r--r-- | src/lib/exchange_api_kyc_wallet.c | 2 | ||||
-rw-r--r-- | src/lib/exchange_api_purse_create_with_merge.c | 2 | ||||
-rw-r--r-- | src/lib/exchange_api_purse_merge.c | 2 | ||||
-rw-r--r-- | src/lib/exchange_api_withdraw.c | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/exchange_api_batch_withdraw.c b/src/lib/exchange_api_batch_withdraw.c index e1f6005f1..5389c7e1c 100644 --- a/src/lib/exchange_api_batch_withdraw.c +++ b/src/lib/exchange_api_batch_withdraw.c @@ -208,7 +208,7 @@ handle_reserve_batch_withdraw_finished ( { struct GNUNET_JSON_Specification spec[] = { GNUNET_JSON_spec_uint64 ("legitimization_uuid", - &wr.details.accepted.payment_target_uuid), + &wr.details.accepted.legitimization_uuid), GNUNET_JSON_spec_end () }; diff --git a/src/lib/exchange_api_deposits_get.c b/src/lib/exchange_api_deposits_get.c index 4ebff3d81..9f2b6a972 100644 --- a/src/lib/exchange_api_deposits_get.c +++ b/src/lib/exchange_api_deposits_get.c @@ -182,7 +182,7 @@ handle_deposit_wtid_finished (void *cls, &dr.details.accepted.execution_time), GNUNET_JSON_spec_mark_optional ( GNUNET_JSON_spec_uint64 ("legitimization_uuid", - &dr.details.accepted.payment_target_uuid), + &dr.details.accepted.legitimization_uuid), &no_legi), GNUNET_JSON_spec_bool ("kyc_ok", &dr.details.accepted.kyc_ok), @@ -200,7 +200,7 @@ handle_deposit_wtid_finished (void *cls, break; } if (no_legi) - dr.details.accepted.payment_target_uuid = 0; + dr.details.accepted.legitimization_uuid = 0; dwh->cb (dwh->cb_cls, &dr); TALER_EXCHANGE_deposits_get_cancel (dwh); diff --git a/src/lib/exchange_api_kyc_wallet.c b/src/lib/exchange_api_kyc_wallet.c index fc9fbcde4..bd5ef3bf2 100644 --- a/src/lib/exchange_api_kyc_wallet.c +++ b/src/lib/exchange_api_kyc_wallet.c @@ -99,7 +99,7 @@ handle_kyc_wallet_finished (void *cls, { struct GNUNET_JSON_Specification spec[] = { GNUNET_JSON_spec_uint64 ("legitimization_uuid", - &ks.payment_target_uuid), + &ks.legitimization_uuid), GNUNET_JSON_spec_end () }; diff --git a/src/lib/exchange_api_purse_create_with_merge.c b/src/lib/exchange_api_purse_create_with_merge.c index 03ffc8bde..546db24a4 100644 --- a/src/lib/exchange_api_purse_create_with_merge.c +++ b/src/lib/exchange_api_purse_create_with_merge.c @@ -299,7 +299,7 @@ handle_purse_create_with_merge_finished (void *cls, struct GNUNET_JSON_Specification spec[] = { GNUNET_JSON_spec_uint64 ( "legitimization_uuid", - &dr.details.unavailable_for_legal_reasons.payment_target_uuid), + &dr.details.unavailable_for_legal_reasons.legitimization_uuid), GNUNET_JSON_spec_end () }; diff --git a/src/lib/exchange_api_purse_merge.c b/src/lib/exchange_api_purse_merge.c index 07f37bd93..8bef94710 100644 --- a/src/lib/exchange_api_purse_merge.c +++ b/src/lib/exchange_api_purse_merge.c @@ -261,7 +261,7 @@ handle_purse_merge_finished (void *cls, struct GNUNET_JSON_Specification spec[] = { GNUNET_JSON_spec_uint64 ( "legitimization_uuid", - &dr.details.unavailable_for_legal_reasons.payment_target_uuid), + &dr.details.unavailable_for_legal_reasons.legitimization_uuid), GNUNET_JSON_spec_end () }; diff --git a/src/lib/exchange_api_withdraw.c b/src/lib/exchange_api_withdraw.c index f3ac962c3..6082ed780 100644 --- a/src/lib/exchange_api_withdraw.c +++ b/src/lib/exchange_api_withdraw.c @@ -162,7 +162,7 @@ handle_reserve_withdraw_finished ( struct GNUNET_JSON_Specification spec[] = { GNUNET_JSON_spec_uint64 ( "legitimization_uuid", - &wr.details.unavailable_for_legal_reasons.payment_target_uuid), + &wr.details.unavailable_for_legal_reasons.legitimization_uuid), GNUNET_JSON_spec_end () }; |