mirror of
https://github.com/bitcoinbook/bitcoinbook
synced 2025-02-15 00:52:06 +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};
|
||
|
}
|
||
|
|