diff options
| author | Özgür Kesim <oec-taler@kesim.org> | 2022-02-18 00:44:55 +0100 | 
|---|---|---|
| committer | Özgür Kesim <oec-taler@kesim.org> | 2022-02-18 00:50:31 +0100 | 
| commit | f4f502d037a84a38db4bc21a1db06324a05d26aa (patch) | |
| tree | abd1d813c9e1a9303d60edd3600a9e39f9d3d91a /src/testing | |
| parent | a78b3345fbf017b1cddfd09afb4b2c29287b0bba (diff) | |
| parent | 22fe5da700df7328de183470c1c7f59b21c9f4f9 (diff) | |
-minor merge conflict resolves
Diffstat (limited to 'src/testing')
| -rw-r--r-- | src/testing/testing_api_cmd_auditor_add_denom_sig.c | 5 | ||||
| -rw-r--r-- | src/testing/testing_api_cmd_deposit.c | 5 | ||||
| -rw-r--r-- | src/testing/testing_api_cmd_insert_deposit.c | 8 | ||||
| -rw-r--r-- | src/testing/testing_api_cmd_refresh.c | 4 | ||||
| -rw-r--r-- | src/testing/testing_api_cmd_withdraw.c | 22 | 
5 files changed, 18 insertions, 26 deletions
| diff --git a/src/testing/testing_api_cmd_auditor_add_denom_sig.c b/src/testing/testing_api_cmd_auditor_add_denom_sig.c index 33cd9575..b8feb7d3 100644 --- a/src/testing/testing_api_cmd_auditor_add_denom_sig.c +++ b/src/testing/testing_api_cmd_auditor_add_denom_sig.c @@ -152,10 +152,7 @@ auditor_add_run (void *cls,        dk->expire_deposit,        dk->expire_legal,        &dk->value, -      &dk->fee_withdraw, -      &dk->fee_deposit, -      &dk->fee_refresh, -      &dk->fee_refund, +      &dk->fees,        &is->auditor_priv,        &auditor_sig);    } diff --git a/src/testing/testing_api_cmd_deposit.c b/src/testing/testing_api_cmd_deposit.c index d3fafc63..d3a444ee 100644 --- a/src/testing/testing_api_cmd_deposit.c +++ b/src/testing/testing_api_cmd_deposit.c @@ -409,8 +409,7 @@ deposit_run (void *cls,    {      TALER_age_commitment_hash (age_commitment, &h_age_commitment);    } - -  ds->deposit_fee = denom_pub->fee_deposit; +  ds->deposit_fee = denom_pub->fees.deposit;    GNUNET_CRYPTO_eddsa_key_get_public (&coin_priv->eddsa_priv,                                        &coin_pub.eddsa_pub); @@ -440,7 +439,7 @@ deposit_run (void *cls,                     TALER_JSON_merchant_wire_signature_hash (ds->wire_details,                                                              &h_wire));      TALER_wallet_deposit_sign (&ds->amount, -                               &denom_pub->fee_deposit, +                               &denom_pub->fees.deposit,                                 &h_wire,                                 &h_contract_terms,                                 &h_age_commitment, diff --git a/src/testing/testing_api_cmd_insert_deposit.c b/src/testing/testing_api_cmd_insert_deposit.c index f0204067..b1e73297 100644 --- a/src/testing/testing_api_cmd_insert_deposit.c +++ b/src/testing/testing_api_cmd_insert_deposit.c @@ -103,16 +103,16 @@ fake_issue (struct TALER_EXCHANGEDB_DenominationKeyInformationP *issue)                                               &issue->properties.value));    GNUNET_assert (GNUNET_OK ==                   TALER_string_to_amount_nbo ("EUR:0.1", -                                             &issue->properties.fee_withdraw)); +                                             &issue->properties.fees.withdraw));    GNUNET_assert (GNUNET_OK ==                   TALER_string_to_amount_nbo ("EUR:0.1", -                                             &issue->properties.fee_deposit)); +                                             &issue->properties.fees.deposit));    GNUNET_assert (GNUNET_OK ==                   TALER_string_to_amount_nbo ("EUR:0.1", -                                             &issue->properties.fee_refresh)); +                                             &issue->properties.fees.refresh));    GNUNET_assert (GNUNET_OK ==                   TALER_string_to_amount_nbo ("EUR:0.1", -                                             &issue->properties.fee_refund)); +                                             &issue->properties.fees.refund));  } diff --git a/src/testing/testing_api_cmd_refresh.c b/src/testing/testing_api_cmd_refresh.c index 8ae4ab93..29ad9d2f 100644 --- a/src/testing/testing_api_cmd_refresh.c +++ b/src/testing/testing_api_cmd_refresh.c @@ -1102,7 +1102,7 @@ melt_run (void *cls,      /* Melt amount starts with the melt fee of the old coin; we'll add the         values and withdraw fees of the fresh coins next */ -    melt_amount = melt_denom_pub->fee_refresh; +    melt_amount = melt_denom_pub->fees.refresh;      age_restricted = melt_denom_pub->key.age_mask.mask != 0;      for (unsigned int i = 0; i<num_fresh_coins; i++)      { @@ -1137,7 +1137,7 @@ melt_run (void *cls,        GNUNET_assert (0 <=                       TALER_amount_add (&melt_amount,                                         &melt_amount, -                                       &fresh_pk->fee_withdraw)); +                                       &fresh_pk->fees.withdraw));        rms->fresh_pks[i] = *fresh_pk;        /* Make a deep copy of the RSA key */        TALER_denom_pub_deep_copy (&rms->fresh_pks[i].key, diff --git a/src/testing/testing_api_cmd_withdraw.c b/src/testing/testing_api_cmd_withdraw.c index e5e8adfd..14015c49 100644 --- a/src/testing/testing_api_cmd_withdraw.c +++ b/src/testing/testing_api_cmd_withdraw.c @@ -474,19 +474,15 @@ withdraw_run (void *cls,    GNUNET_assert (0 <=                   TALER_amount_add (&ws->reserve_history.amount,                                     &ws->amount, -                                   &ws->pk->fee_withdraw)); -  ws->reserve_history.details.withdraw.fee = ws->pk->fee_withdraw; - -  { - -    ws->wsh = TALER_EXCHANGE_withdraw (is->exchange, -                                       ws->pk, -                                       rp, -                                       &ws->ps, -                                       ws->h_age_commitment, -                                       &reserve_withdraw_cb, -                                       ws); -  } +                                   &ws->pk->fees.withdraw)); +  ws->reserve_history.details.withdraw.fee = ws->pk->fees.withdraw; +  ws->wsh = TALER_EXCHANGE_withdraw (is->exchange, +                                     ws->pk, +                                     rp, +                                     &ws->ps, +                                     ws->h_age_commitment, +                                     &reserve_withdraw_cb, +                                     ws);    if (NULL == ws->wsh)    {      GNUNET_break (0); | 
