summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2019-09-03 03:14:23 +0200
committerChristian Grothoff <christian@grothoff.org>2019-09-03 03:14:23 +0200
commit736927f05a19e0b88addd6829f49a5a9ddb025c4 (patch)
treefc4a21ae1ef60efcbebac48d943a50d5d2f67008 /contrib
parent67aeb85a13db9acf9505098d82433cf7e7cfa23a (diff)
downloadexchange-736927f05a19e0b88addd6829f49a5a9ddb025c4.tar.gz
exchange-736927f05a19e0b88addd6829f49a5a9ddb025c4.tar.bz2
exchange-736927f05a19e0b88addd6829f49a5a9ddb025c4.zip
another test, more fixes in auditor-report template
Diffstat (limited to 'contrib')
-rw-r--r--contrib/auditor-report.tex.j222
1 files changed, 13 insertions, 9 deletions
diff --git a/contrib/auditor-report.tex.j2 b/contrib/auditor-report.tex.j2
index b03bf8235..2216d8d08 100644
--- a/contrib/auditor-report.tex.j2
+++ b/contrib/auditor-report.tex.j2
@@ -446,26 +446,30 @@ public key for ``payback-master'' operations.
{% if data.bad_sig_losses|length() == 0 %}
{\bf All signatures were valid.}
{% else %}
- \begin{longtable}{p{1.5cm}|c|l|r}
- {\bf Public key} & {\bf Operation type} & Database row & {\bf Loss amount} \\
+ \begin{longtable}{c|r|r}
+ \multicolumn{3}{l}{ {\bf Public key} }\\
+ {\bf Operation type} & Database row & {\bf Loss amount} \\
\hline \hline
\endfirsthead
- {\bf Public key} & {\bf Operation type} & Database row & {\bf Loss amount} \\ \hline \hline
+ \multicolumn{3}{l}{ {\bf Public key} }\\
+ {\bf Operation type} & Database row & {\bf Loss amount} \\ \hline \hline
\endhead
\hline \hline
- {\bf Public key} & {\bf Operation type} & Database row & {\bf Loss amount} \\
+ \multicolumn{3}{l}{ {\bf Public key} }\\
+ {\bf Operation type} & Database row & {\bf Loss amount} \\
\endfoot
\hline
- {\bf Total losses} & & &
- {{ data.total_bad_sig_loss}} \\
+ {\bf Total losses} & &
+ {\bf {{ data.total_bad_sig_loss}} } \\
\caption{Losses from operations performed on coins without proper signatures.}
\label{table:bad_signature_losses}
\endlastfoot
{% for item in data.bad_sig_losses %}
- \multicolumn{5}{l}{ {\tt \small {{ item.key_pub }} } } \\
+ \multicolumn{3}{l}{ {\tt \small {{ item.key_pub }} } } \\
\nopagebreak
- & {{ item.operation }} & {{ item.rowid }} &
- {{ item.loss }} \\ \hline
+ {{ item.operation }} &
+ {{ item.row }} &
+ {{ item.loss }} \\ \hline
{% endfor %}
\end{longtable}
{% endif %}