mirror of
https://github.com/bitcoin/bips.git
synced 2026-03-30 16:06:44 +00:00
BIP-0098: Fast Merkle Trees
This commit is contained in:
11
bip-0098/unbalanced-hash-tree.dot
Normal file
11
bip-0098/unbalanced-hash-tree.dot
Normal file
@@ -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"]
|
||||
}
|
||||
Reference in New Issue
Block a user