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/alt_script.dot

13 lines
227 B

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