summaryrefslogtreecommitdiff
path: root/doc/system/taler/coin.dot
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-07-13 19:03:05 +0200
committerChristian Grothoff <christian@grothoff.org>2020-07-13 19:03:05 +0200
commitb89e433f4f48f5be8d35d7a7eaf45d5ac45169fd (patch)
tree454ddf803651e323e94294b005637cdd4c2928d3 /doc/system/taler/coin.dot
parent5e5a15b01b136b347d15bf7517ad2745a4e1b465 (diff)
downloadexchange-b89e433f4f48f5be8d35d7a7eaf45d5ac45169fd.tar.gz
exchange-b89e433f4f48f5be8d35d7a7eaf45d5ac45169fd.tar.bz2
exchange-b89e433f4f48f5be8d35d7a7eaf45d5ac45169fd.zip
add more detail to coin state machine
Diffstat (limited to 'doc/system/taler/coin.dot')
-rw-r--r--doc/system/taler/coin.dot4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/system/taler/coin.dot b/doc/system/taler/coin.dot
index ab1f8139f..3112a1b65 100644
--- a/doc/system/taler/coin.dot
+++ b/doc/system/taler/coin.dot
@@ -6,7 +6,8 @@ digraph Coin {
partial [color=blue, label="dirty coin", shape="box"];
revoked [color=blue, label="revoked coin", shape="box"];
zombie [color=blue, label="zombie coin", shape="box"];
- spent [color=blue, label="spent coin", shape="doublecircle"];
+ spent [color=blue, label="spent coin", shape="box"];
+ wired [color=blue, label="wired coin", shape="doublecircle"];
expired [color=blue, label="expired coin", shape="doublecircle"];
subgraph {
@@ -36,6 +37,7 @@ digraph Coin {
melt->spent;
spent->refund;
refund->partial;
+ spent->wired [style=dotted];
partial->expired [style=dotted];
partial->melt;
partial->deposit [color=red];