taler-docs

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

commit cf5724cad59da5b30c4003db125a77fb5f7cd8cb
parent cb136d04dfc6a3c77322f5ca79f84a67f63cc1b1
Author: Florian Dold <florian@dold.me>
Date:   Thu,  5 Jun 2025 11:45:23 +0200

-dce

Diffstat:
Mdesign-documents/064-kyc-operation-algo.rst | 7+++----
1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/design-documents/064-kyc-operation-algo.rst b/design-documents/064-kyc-operation-algo.rst @@ -26,7 +26,7 @@ Proposed Solution Steps for processing operation of type ``op`` and amount ``amt``: -0. Initialize ``last_check_success := null``, ``last_op_attempt := null``, ``last_rule_gen := null`` +0. Initialize ``last_op_attempt := null``, ``last_rule_gen := null`` 1. Check if a zero limit for ``op`` is applicable. @@ -47,7 +47,7 @@ Steps for processing operation of type ``op`` and amount ``amt``: * If the request returns ``200 Ok`` or a ``202 Accepted``: * Set ``last_rule_gen := response.rule_gen`` - * If the exposed limits do not deny ``op``, set ``last_check_success := now()`` and proceed with step 2. + * If the exposed limits do not deny ``op``, proceed with step 2. * Proceed with the next step 4. @@ -57,8 +57,7 @@ Steps for processing operation of type ``op`` and amount ``amt``: * If the request returns ``200 Ok`` or a ``202 Accepted``: * Set ``last_rule_gen := response.rule_gen`` - * If the exposed limits - do not deny ``op``, set ``last_check_success := now()`` and proceed with step 2. + * If the exposed limits do not deny ``op``, proceed with step 2. * If if the ``last_op_attempt`` is ``null`` or is more than 10 minutes in the past, proceed with step 2. (See Note 1)