diff options
author | Christian Grothoff <christian@grothoff.org> | 2017-11-27 23:42:17 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2017-11-29 20:23:08 +0100 |
commit | 499247a4805583dc67b9d6fef850ae86b4be1e32 (patch) | |
tree | abf9bf358bc00149a78d8128101bfc43540af8f2 /contrib | |
parent | 9041840d6e1caa5a0a4f8222b312b547ccd2ab1b (diff) |
fixing #5178
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/auditor-report.tex.j2 | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/contrib/auditor-report.tex.j2 b/contrib/auditor-report.tex.j2 index 8eb023016..0fbf74c19 100644 --- a/contrib/auditor-report.tex.j2 +++ b/contrib/auditor-report.tex.j2 @@ -753,6 +753,45 @@ reserve expired. {% endif %} +\subsection{Hanging refresh operations} + +This section describes cases where the exchange booked a +coin as spent from {\tt /refresh/melt} but where the +wallet did not yet complete {\tt /refresh/reveal}. This +may happen even if the exchange is correct. + + +{% if data.refresh_hanging|length() == 0 %} + {\bf All melted coins were refreshed.} +{% else %} + \begin{longtable}{p{1.5cm}|c|rl} + {\bf Key} & {\bf row} & \multicolumn{2}{|c|}{ {\bf Amount}} \\ + \hline \hline +\endfirsthead + {\bf Key} & {\bf row} & \multicolumn{2}{|c|}{ {\bf Amount}} \\ + \hline \hline +\endhead + \hline \hline + {\bf Key} & {\bf row} & \multicolumn{2}{|c|}{ {\bf Amount}} \\ +\endfoot + \hline + {\bf Sum} & & + {{ data.total_refresh_hanging.value}}.{{ data.total_refresh_hanging.fraction}} & {{ data.total_refresh_hanging.currency}} \\ + \caption{Refresh operations hanging.} + \label{table:refresh:hanging} +\endlastfoot +{% for item in data.refresh_hanging %} + \multicolumn{4}{l}{ {\tt {{ item.coin_pub }} } } \\ +\nopagebreak + & + {{ item.row }} & + {{ item.amount.value }}.{{ item.amount.fraction }} & + {{ item.amount.currency }} \\ \hline +{% endfor %} + \end{longtable} +{% endif %} + + \subsection{Denomination key invalid at time of withdrawal} This section lists cases where a denomination key was not valid for |