summaryrefslogtreecommitdiff
path: root/bip-0098/unbalanced-hash-tree.dot
diff options
context:
space:
mode:
Diffstat (limited to 'bip-0098/unbalanced-hash-tree.dot')
-rw-r--r--bip-0098/unbalanced-hash-tree.dot11
1 files changed, 11 insertions, 0 deletions
diff --git a/bip-0098/unbalanced-hash-tree.dot b/bip-0098/unbalanced-hash-tree.dot
new file mode 100644
index 0000000..c637652
--- /dev/null
+++ b/bip-0098/unbalanced-hash-tree.dot
@@ -0,0 +1,11 @@
+digraph G {
+ 0 [label="Root\nH(A || H(B || C))"]
+ 0 -> A
+ A [label="A\nskip"]
+ 0 -> 1
+ 1 [label="Node\nH(B || C)"]
+ 1 -> B
+ B [label="B\nskip"]
+ 1 -> C
+ C [label="C\nverify"]
+}