fix start time
This commit is contained in:
parent
fdb768653e
commit
0d53d893f5
@ -111,20 +111,22 @@ In that time, the auditor processed NO accounts at all.
|
|||||||
In that time, the auditor processed the following table ranges:
|
In that time, the auditor processed the following table ranges:
|
||||||
\begin{center}
|
\begin{center}
|
||||||
\begin{longtable}{l|c|r|r}
|
\begin{longtable}{l|c|r|r}
|
||||||
Account & Table & Start & End \\ \hline \hline
|
Account & Table & Start & End \\ \hline
|
||||||
\endfirsthead
|
\endfirsthead
|
||||||
Account & Table & Start & End \\ \hline \hline
|
Account & Table & Start & End \\ \hline
|
||||||
\endhead
|
\endhead
|
||||||
\endfoot
|
\endfoot
|
||||||
\caption{Range of account data processed by the wire auditor.}
|
\caption{Range of account data processed by the wire auditor.}
|
||||||
\label{table:account_range}
|
\label{table:account_range}
|
||||||
\endlastfoot
|
\endlastfoot
|
||||||
{% for item in wire.account_progress %}
|
{% for item in wire.account_progress %}
|
||||||
|
\hline
|
||||||
{{ item.account }} &
|
{{ item.account }} &
|
||||||
Reserves Incoming & {{ item.start_reserve_in }}
|
Reserves Incoming & {{ item.start_reserve_in }}
|
||||||
& {{ item.end_reserve_in }} \\ \hline
|
& {{ item.end_reserve_in }} \\ \hline
|
||||||
|
&
|
||||||
Outgoing wire transfers & {{ item.start_wire_out }}
|
Outgoing wire transfers & {{ item.start_wire_out }}
|
||||||
& {{ item.end_wire_out }} \\ \hline
|
& {{ item.end_wire_out }} \\
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
\end{longtable}
|
\end{longtable}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -2145,6 +2145,7 @@ run (void *cls,
|
|||||||
|
|
||||||
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
||||||
"Launching auditor\n");
|
"Launching auditor\n");
|
||||||
|
start_time = GNUNET_TIME_absolute_get ();
|
||||||
cfg = c;
|
cfg = c;
|
||||||
if (GNUNET_OK !=
|
if (GNUNET_OK !=
|
||||||
GNUNET_CONFIGURATION_get_value_string (cfg,
|
GNUNET_CONFIGURATION_get_value_string (cfg,
|
||||||
|
@ -162,7 +162,7 @@ jq -e .wire_format_inconsistencies[0] < test-wire-audit.json > /dev/null && exit
|
|||||||
echo PASS
|
echo PASS
|
||||||
|
|
||||||
LOSS=`jq -r .total_bad_sig_loss < test-audit.json`
|
LOSS=`jq -r .total_bad_sig_loss < test-audit.json`
|
||||||
if test $LOSS != "TESTKUDOS:0.0"
|
if test $LOSS != "TESTKUDOS:0"
|
||||||
then
|
then
|
||||||
exit_fail "Wrong total bad sig loss, got unexpected loss of $LOSS"
|
exit_fail "Wrong total bad sig loss, got unexpected loss of $LOSS"
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user