Merge pull request #132 from yojoots/minor_fixups

Minor fixups
This commit is contained in:
Shannon Appelcline 2020-06-23 07:46:13 -10:00 committed by GitHub
commit ab4c5e1f9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ Let's try this out:
```Bash ```Bash
$ btcc OP_1 OP_2 OP_ADD $ btcc OP_1 OP_2 OP_ADD
515293 515293
$ btcdeb '[OP_1 OP_2 OP_ADD]' # or: btcdeb 515293 $ btcdeb '[OP_1 OP_2 OP_ADD]' # or: btcdeb 0x515293
btcdeb -- type `btcdeb -h` for start up options btcdeb -- type `btcdeb -h` for start up options
valid script valid script
3 op script loaded. type `help` for usage information 3 op script loaded. type `help` for usage information

View File

@ -2,7 +2,7 @@
> :information_source: **NOTE:** This is a draft in progress, so that I can get some feedback from early reviewers. It is not yet ready for learning. > :information_source: **NOTE:** This is a draft in progress, so that I can get some feedback from early reviewers. It is not yet ready for learning.
In the previous section we overviewed the theory of how to create P2SH transactions to hold Bitcoin Scripts. The actual practice of doing so is _much more difficult_, but for the sake of completeness, we're going to look at it here. This is probably not something you'd ever do without an API, so if it gets to intimidating, be aware that we'll returning to pristine, high-level Scripts in a moment. In the previous section we overviewed the theory of how to create P2SH transactions to hold Bitcoin Scripts. The actual practice of doing so is _much more difficult_, but for the sake of completeness, we're going to look at it here. This is probably not something you'd ever do without an API, so if it gets too intimidating, be aware that we'll be returning to pristine, high-level Scripts in a moment.
## Create a Locking Script ## Create a Locking Script