summaryrefslogtreecommitdiffstats
path: root/doc/paper/gen/blockchain.dot
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-01-03 11:51:10 +0100
committerMatthias Beyer <mail@beyermatthias.de>2021-01-03 11:52:01 +0100
commita3bbaba7a12917d021e31f7c0f17a00cee660619 (patch)
tree142880118e4e635066ab2266d6871233506ae9d3 /doc/paper/gen/blockchain.dot
parentda68145fdf4dc1bfa8fd8275d09599e0cf250267 (diff)
Replace svgbob files with dot graphes
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'doc/paper/gen/blockchain.dot')
-rw-r--r--doc/paper/gen/blockchain.dot11
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/paper/gen/blockchain.dot b/doc/paper/gen/blockchain.dot
new file mode 100644
index 0000000..d414ed4
--- /dev/null
+++ b/doc/paper/gen/blockchain.dot
@@ -0,0 +1,11 @@
+digraph G {
+ rankdir = RL;
+ node [style=filled,color=grey,shape=circle]; A B C D E;
+ rank = same; A; B; D; E;
+
+ B -> A
+ C -> A
+ D -> B
+ D -> C
+ E -> D
+}