1
0
mirror of https://github.com/bitcoinbook/bitcoinbook synced 2024-11-23 08:38:10 +00:00
bitcoinbook/draft_images/src/alt_script.dot
2023-09-12 00:03:57 -04:00

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