From a91402d9e50eabaf9e93eeb6e71ede8081ce2d59 Mon Sep 17 00:00:00 2001 From: Justin Hanneman Date: Mon, 22 Jun 2020 21:50:36 -0600 Subject: [PATCH 1/2] Avoid ambiguous (numerically-interpretable) input to btcdeb example --- 07_2_Running_a_Bitcoin_Script.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/07_2_Running_a_Bitcoin_Script.md b/07_2_Running_a_Bitcoin_Script.md index 58a1f0d..f717cff 100644 --- a/07_2_Running_a_Bitcoin_Script.md +++ b/07_2_Running_a_Bitcoin_Script.md @@ -80,7 +80,7 @@ Let's try this out: ```Bash $ btcc OP_1 OP_2 OP_ADD 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 valid script 3 op script loaded. type `help` for usage information From ca2a768ff6566b9165b8b3c62b4b652c4a001d58 Mon Sep 17 00:00:00 2001 From: Justin Hanneman Date: Mon, 22 Jun 2020 21:53:02 -0600 Subject: [PATCH 2/2] Fix minor grammatical issues in Section 8.2 intro --- 08_2_Building_the_Structure_of_P2SH.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/08_2_Building_the_Structure_of_P2SH.md b/08_2_Building_the_Structure_of_P2SH.md index d605c6a..b2383a2 100644 --- a/08_2_Building_the_Structure_of_P2SH.md +++ b/08_2_Building_the_Structure_of_P2SH.md @@ -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. -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