From 00610a11141947080fdf3176866fbdee51cdac95 Mon Sep 17 00:00:00 2001 From: Alex Barron Date: Thu, 20 Oct 2022 10:04:33 +0200 Subject: [PATCH] Ch11 Add merkleblock to import loading cell Exercises 6 and 7 of Ch 11 fail to run due to merkleblock not being defined. Importing it in the top cell along with the other files fixes this. See issue https://github.com/jimmysong/programmingbitcoin/issues/254 --- code-ch11/Chapter11.ipynb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code-ch11/Chapter11.ipynb b/code-ch11/Chapter11.ipynb index 1eaca6f7..cefb11f3 100644 --- a/code-ch11/Chapter11.ipynb +++ b/code-ch11/Chapter11.ipynb @@ -16,7 +16,8 @@ "import helper\n", "import network\n", "import script\n", - "import tx" + "import tx\n", + "import merkleblock" ] }, {