You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bitcoinbook/draft_images/src/taproot1.dot

17 lines
433 B

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"];
}