commit f3c8ef70bd3dc914c8e3d391405207108d2d9e72
parent ca4502bec78da36db5b5e8f5e6fd5b3d01dfea48
Author: Christian Grothoff <christian@grothoff.org>
Date: Sun, 23 Apr 2023 12:59:18 +0200
fix peer pull credit states
Diffstat:
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/design-documents/037-wallet-transactions-lifecycle.rst b/design-documents/037-wallet-transactions-lifecycle.rst
@@ -1116,7 +1116,7 @@ Transaction Type: Peer Pull Debit
* ``[processed-success] => aborted(refunded)``
* ``[processed-failure] => aborting(refresh)``
- * ``[action:force-abort] => aborted``
+ * ``[action:force-abort] => failed``
* ``aborting(refresh)``
diff --git a/transaction-pull-debit-states.dot b/transaction-pull-debit-states.dot
@@ -41,11 +41,11 @@ digraph G {
aborting_refund->aborting_refresh;
aborting_refund->aborting_refresh [color="red", label="failure"];
- aborting_refund->aborted [color="blue", label="force-abort"];
+ aborting_refund->failed [color="blue", label="force-abort"];
aborting_refresh->aborted;
aborting_refresh->failed [color="red", label="failure"];
- aborting_refresh->aborted [color="blue", label="force-abort"];
+ aborting_refresh->failed [color="blue", label="force-abort"];
aborted->deleted [color="blue", label="delete"];
failed->deleted [color="blue", label="delete"];