mirror of
https://github.com/bitcoinbook/bitcoinbook
synced 2024-11-16 04:59:35 +00:00
17 lines
433 B
Plaintext
17 lines
433 B
Plaintext
digraph merkle_tree {
|
|
splines=ortho;
|
|
node [shape=box, style="filled", color="black", fontcolor="black", fillcolor="white"];
|
|
|
|
"Public Key" -> "Merkle Root"
|
|
"Merkle Root" -> "Hash A";
|
|
"Merkle Root" -> "Hash B";
|
|
"Hash A" -> "A";
|
|
"Hash B" -> "B";
|
|
|
|
"Merkle Root" [label="Merkle Root"];
|
|
"Hash A" [label="Hash A"];
|
|
"Hash B" [label="Hash B"];
|
|
"B" [label="Script 0"];
|
|
"A" [label="Script 1"];
|
|
}
|