mirror of
https://github.com/bitcoinbook/bitcoinbook
synced 2024-11-29 11:28:20 +00:00
13 lines
227 B
Plaintext
13 lines
227 B
Plaintext
|
digraph AST {
|
||
|
node [shape=box];
|
||
|
|
||
|
// Main Script
|
||
|
script [label="Script"];
|
||
|
op1 [ label = "<pubKey1> OP_CHECKSIG" ]
|
||
|
op2 [ label = "<pubKey2> OP_CHECKSIG" ]
|
||
|
|
||
|
// Script Structure
|
||
|
script -> {op1, op2};
|
||
|
}
|
||
|
|