From d9b1474632d4088e6b1bedb5bc84fb1b58421561 Mon Sep 17 00:00:00 2001 From: Efe Date: Mon, 16 Dec 2019 17:36:38 +0300 Subject: [PATCH 1/2] blank space removed --- notes_01.py | 1 - 1 file changed, 1 deletion(-) diff --git a/notes_01.py b/notes_01.py index a0a6948..7e52331 100644 --- a/notes_01.py +++ b/notes_01.py @@ -56,5 +56,4 @@ from helpers import testnet from pprint import pprint pprint(testnet.getblockchaininfo()) - ''' \ No newline at end of file From 00a0b9795aff8bdcfd790b2ac1f2bd35ac9046ae Mon Sep 17 00:00:00 2001 From: Efe Date: Mon, 16 Dec 2019 17:41:19 +0300 Subject: [PATCH 2/2] print shifted to the comments --- notes_01.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/notes_01.py b/notes_01.py index 7e52331..770ae1b 100644 --- a/notes_01.py +++ b/notes_01.py @@ -1,5 +1,6 @@ -print(int('b',16), int('62ba1cd8a',16)) # Prints the hexadecimal representation of the value. ''' +print(int('b',16), int('62ba1cd8a',16)) # Prints the hexadecimal representation of the value. +/ testnet : A small replica of bitcoin for developers to test their app without real money. We use bitcoin-cli command to communicate with a node. It is a command line utility. In this course we use >testnet rather than >bitcoin-cli.