aboutsummaryrefslogtreecommitdiff
path: root/transaction-refund-states.dot
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-04-26 09:13:23 +0200
committerFlorian Dold <florian@dold.me>2023-04-29 13:16:59 +0200
commitb04649eb0fe7a223b397a8ffb2bc3c6132af76d7 (patch)
treed8494e3c9a8e51a87adced12b1f770b60006b9ce /transaction-refund-states.dot
parentc1700a2340591cc1ea1ebc7d603ba466c1094085 (diff)
downloaddocs-b04649eb0fe7a223b397a8ffb2bc3c6132af76d7.tar.gz
docs-b04649eb0fe7a223b397a8ffb2bc3c6132af76d7.tar.bz2
docs-b04649eb0fe7a223b397a8ffb2bc3c6132af76d7.zip
diagrams
Diffstat (limited to 'transaction-refund-states.dot')
-rw-r--r--transaction-refund-states.dot28
1 files changed, 8 insertions, 20 deletions
diff --git a/transaction-refund-states.dot b/transaction-refund-states.dot
index 27aba411..8e01d6e4 100644
--- a/transaction-refund-states.dot
+++ b/transaction-refund-states.dot
@@ -3,29 +3,17 @@ digraph G {
initial[label="", shape="circle", xlabel="refund"];
pending_merchant[label="merchant"];
pending_refresh[label="refresh"];
- aborting_merchant[label="merchant", style=dashed];
- aborting_refresh[label="refresh",style=dashed];
- aborted[label="aborted", style=dashed, shape=box];
+ //aborting_merchant[label="merchant", style=dashed];
+ //aborting_refresh[label="refresh",style=dashed];
+ //aborted[label="aborted", style=dashed, shape=box];
done[label="done", shape="box"];
- subgraph {
- rank=same; aborted; done;
- }
-
- subgraph {
- rank=same; pending_merchant; aborting_merchant;
- }
-
- subgraph {
- rank=same; pending_refresh; aborting_refresh;
- }
-
initial->pending_merchant;
pending_merchant->pending_refresh [color=green];
- pending_merchant -> aborting_merchant [color=blue, style=dashed];
- aborting_merchant -> aborted [color=green];
- pending_refresh -> aborting_refresh [color=blue];
- aborting_refresh -> aborted [color=green];
- pending_refresh -> done;
+ //pending_merchant -> aborting_merchant [color=blue, style=dashed];
+ //aborting_merchant -> aborted [color=green];
+ //pending_refresh -> aborting_refresh [color=blue];
+ //aborting_refresh -> aborted [color=green];
+ pending_refresh -> done [color=green];
}