summaryrefslogtreecommitdiff
path: root/coin.dot
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-07-15 15:09:18 +0200
committerChristian Grothoff <christian@grothoff.org>2020-07-15 15:09:18 +0200
commit319b5179b2f588e8dd21a33cd80b6f288f96ee04 (patch)
tree112982d952b2cffd0349d198d53aa4c028260cee /coin.dot
parent7291d52d015b7ddb391102dfdf5d0c1ac4f52ea9 (diff)
downloaddocs-319b5179b2f588e8dd21a33cd80b6f288f96ee04.tar.gz
docs-319b5179b2f588e8dd21a33cd80b6f288f96ee04.tar.bz2
docs-319b5179b2f588e8dd21a33cd80b6f288f96ee04.zip
update manual
Diffstat (limited to 'coin.dot')
-rw-r--r--coin.dot7
1 files changed, 6 insertions, 1 deletions
diff --git a/coin.dot b/coin.dot
index 7f21202e..3112a1b6 100644
--- a/coin.dot
+++ b/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 {
@@ -34,6 +35,10 @@ digraph Coin {
reveal->fresh;
melt->partial;
melt->spent;
+ spent->refund;
+ refund->partial;
+ spent->wired [style=dotted];
+ partial->expired [style=dotted];
partial->melt;
partial->deposit [color=red];
fresh->expired [style=dotted];