exchange/doc/system/taler/deposit.dot
Christian Grothoff 4c1c8e405b
more figures
2020-07-12 20:00:56 +02:00

32 lines
827 B
Plaintext

digraph Deposit {
deposited [color=blue, label="deposit created", shape="box"];
ready [color=blue, label="deposit ready", shape="box"];
due [color=blue, label="deposit due", shape="box"];
tiny [color=blue, label="deposit tiny", shape="box"];
done [color=blue, label="deposit done", shape="doublecircle"];
wtid [color=blue, label="pending transfer", shape="box"];
finished [color=blue, label="finished transfer", shape="doublecircle"];
subgraph {
rank = same; due; tiny;
}
pay->deposited;
deposited->ready [style=dotted];
deposited->refund;
refund->deposited;
refund->ready;
refund->done;
ready->due [style=dotted];
ready->refund;
aggregate->tiny;
due->aggregate;
ready->aggregate;
tiny->aggregate;
aggregate->done;
aggregate->wtid;
wtid->transfer;
transfer->finished;
}