diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-01-19 02:28:06 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-01-19 02:28:14 +0100 |
commit | 58e5780917fad2f085734804fd96f89c04fcaaca (patch) | |
tree | 43bb89794256538313fc8f836dc393e627afc091 /contrib/auditor-report.tex.j2 | |
parent | 021a2003d59282e6508618f34e80c0ac61774624 (diff) |
fix aggregator fee calculation logic
Diffstat (limited to 'contrib/auditor-report.tex.j2')
-rw-r--r-- | contrib/auditor-report.tex.j2 | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/contrib/auditor-report.tex.j2 b/contrib/auditor-report.tex.j2 index 7125bb33b..8f142402d 100644 --- a/contrib/auditor-report.tex.j2 +++ b/contrib/auditor-report.tex.j2 @@ -574,17 +574,21 @@ any effects on its own balance, those entries are excluded from the total. {% if data.coin_inconsistencies|length() == 0 %} {\bf All coin histories were unproblematic.} {% else %} - \begin{longtable}{p{1.8cm}|p{3cm}|r|r} - {\bf Operation} & {\bf Coin public key} & {\bf Exchange } & {\bf Auditor} \\ + \begin{longtable}{p{1.8cm}|r|r} + {\bf Operation} & \multicolumn{2}{|c}{\bf Coin public key} \\ + & {\bf Exchange } & {\bf Auditor} \\ \hline \hline \endfirsthead - {\bf Operation} & {\bf Coin public key} & {\bf Exchange} & {\bf Auditor} \\ \hline \hline + {\bf Operation} & \multicolumn{2}{|r}{\bf Coin public key} \\ + & {\bf Exchange } & {\bf Auditor} \\ + \hline \hline \endhead \hline \hline - {\bf Operation} & {\bf Coin public key} & {\bf Exchange} & {\bf Auditor} \\ + {\bf Operation} & \multicolumn{2}{|r}{\bf Coin public key} \\ + & {\bf Exchange } & {\bf Auditor} \\ \endfoot \hline - \multicolumn{2}{l|}{ $\sum$ {\bf Delta (Auditor-Exchange)} } & + $\sum$ {\bf Delta (Auditor-Exchange)} & {{ data.total_coin_delta_plus }} & - {{ data.total_coin_delta_minus }} \\ \caption{Arithmetic inconsistencies of amount calculations involving a coin.} @@ -592,8 +596,8 @@ any effects on its own balance, those entries are excluded from the total. \endlastfoot {% for item in data.coin_inconsistencies %} {{ item.operation }} & - \multicolumn{5}{l}{ {\tt \small {{ item.coin_pub }} } } \\ -\nopagebreak & & + \multicolumn{2}{l}{ {\tt \small {{ item.coin_pub }} } } \\ +\nopagebreak & {{ item.exchange }} & {{ item.auditor }} \\ \hline {% endfor %} |