diff options
author | Thien-Thi Nguyen <ttn@gnuvola.org> | 2022-09-07 13:23:39 -0400 |
---|---|---|
committer | Thien-Thi Nguyen <ttn@gnuvola.org> | 2022-09-07 13:23:39 -0400 |
commit | e83191c42117171de82e4cd01059ab56331a87f2 (patch) | |
tree | cc3da8bd2bcc9fbc83eb7fe22634631435f1a62c /contrib | |
parent | 96fae17b328d39ad333fbe52c9be837a41c3c2ab (diff) |
fix typo: s/issattr/isattr/g (45 instances)
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/auditor-report.tex.j2 | 8 | ||||
-rw-r--r-- | contrib/samples/wire-auditor.json | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/contrib/auditor-report.tex.j2 b/contrib/auditor-report.tex.j2 index 3ce8f63f4..c31af135f 100644 --- a/contrib/auditor-report.tex.j2 +++ b/contrib/auditor-report.tex.j2 @@ -901,7 +901,7 @@ actually received in some reserves. {% endif %} -\subsection{Missattributed incoming wire transfers} +\subsection{Misattributed incoming wire transfers} This section lists cases where the sender account record of an incoming wire transfer differs between the exchange and the bank. @@ -911,7 +911,7 @@ account. % Table generation tested by testcase #9 in test-auditor.sh -{% if wire.missattribution_in_inconsistencies|length() == 0 %} +{% if wire.misattribution_in_inconsistencies|length() == 0 %} {\bf All incoming wire transfer sender accounts matched up.} {% else %} \begin{longtable}{p{8.5cm}|r} @@ -926,11 +926,11 @@ account. \endfoot \hline {\bf Total amount} & - {{ wire.total_missattribution_in}} \\ + {{ wire.total_misattribution_in}} \\ \caption{Incoming wire transfer sender accounts not matching up.} \label{table:wire_in:sender_account_inconsistencies} \endlastfoot -{% for item in wire.missattribution_in_inconsistencies %} +{% for item in wire.misattribution_in_inconsistencies %} {\tt \small \truncate{8.3cm}{ {{ item.reserve_pub }} } } & {{ item.amount }} \\ \hline {% endfor %} diff --git a/contrib/samples/wire-auditor.json b/contrib/samples/wire-auditor.json index ce2baf2e8..905bbfcf2 100644 --- a/contrib/samples/wire-auditor.json +++ b/contrib/samples/wire-auditor.json @@ -38,8 +38,8 @@ "value": 5, "fraction": 1000000 }, - "missattribution_in_inconsistencies": [], - "total_missattribution_in": { + "misattribution_in_inconsistencies": [], + "total_misattribution_in": { "currency": "KUDOS", "value": 0, "fraction": 0 @@ -233,4 +233,4 @@ "fraction": 1000000 }, "lag_details": [] -}
\ No newline at end of file +} |