diff options
| author | Christian Grothoff <christian@grothoff.org> | 2022-03-05 14:36:49 +0100 | 
|---|---|---|
| committer | Christian Grothoff <christian@grothoff.org> | 2022-03-05 14:36:55 +0100 | 
| commit | 7ff58c3d8f2351c57142b4b65ab75304f355fc4f (patch) | |
| tree | 4d5de28cbc2cb51b9946c924b7dd228cfe0d0634 /src/benchmark | |
| parent | 8a906bf96c9c418dbd58727284eb5cfdd6fdff24 (diff) | |
refactor /wire to include logic to return the wad fee (for W2W payments)
Diffstat (limited to 'src/benchmark')
| -rw-r--r-- | src/benchmark/taler-aggregator-benchmark.c | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/src/benchmark/taler-aggregator-benchmark.c b/src/benchmark/taler-aggregator-benchmark.c index 1437dafa..046be321 100644 --- a/src/benchmark/taler-aggregator-benchmark.c +++ b/src/benchmark/taler-aggregator-benchmark.c @@ -574,7 +574,7 @@ run (void *cls,    }    { -    struct TALER_Amount wire_fee; +    struct TALER_WireFeeSet fees;      struct TALER_MasterSignatureP master_sig;      unsigned int year;      struct GNUNET_TIME_Timestamp ws; @@ -585,7 +585,9 @@ run (void *cls,      {        ws = GNUNET_TIME_absolute_to_timestamp (GNUNET_TIME_year_to_time (y - 1));        we = GNUNET_TIME_absolute_to_timestamp (GNUNET_TIME_year_to_time (y)); -      make_amount (0, 5, &wire_fee); +      make_amount (0, 5, &fees.wire); +      make_amount (0, 5, &fees.wad); +      make_amount (0, 5, &fees.closing);        memset (&master_sig,                0,                sizeof (master_sig)); @@ -594,8 +596,7 @@ run (void *cls,                                     "x-taler-bank",                                     ws,                                     we, -                                   &wire_fee, -                                   &wire_fee, +                                   &fees,                                     &master_sig))        {          GNUNET_break (0);  | 
