taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

commit 734c0df60a47e18fd270137efcbca5cdddde4fd7
parent 6945b37cf96747a5a75fa031426e08f2d81fa0bd
Author: Florian Dold <florian@dold.me>
Date:   Thu, 10 Apr 2025 18:43:55 +0200

tops: don't use float in data that will be canonicalized and signed

Diffstat:
Mdeployments/tops.rst | 12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/deployments/tops.rst b/deployments/tops.rst @@ -281,15 +281,15 @@ FIXME-#9678: we should put these into GANA. * Identifies the sanction list entry that the account matched against (best match, does not mean it was a good match) -* ``SANCTION_LIST_RATING :: float`` +* ``SANCTION_LIST_RATING :: Integer`` - * [0,1] score for how good the sanction list match was - (0: none, 1: perfect match) + * [0,10**9] score for how good the sanction list match was + (0: none, 10**9: perfect match) -* ``SANCTION_LIST_CONFIDENCE :: float`` +* ``SANCTION_LIST_CONFIDENCE :: Integer`` - * [0,1] score for how much supporting data we had for - the sanction list match (0: none, 1: all fields available) + * [0,10**9] score for how much supporting data we had for + the sanction list match (0: none, 10**9: all fields available) * ``SANCTION_LIST_SUPPRESS :: Boolean``