From 2121d58fbe838019908938d31f6aa8374fd29d16 Mon Sep 17 00:00:00 2001 From: Satoshi Nakamoto <65907137+SatoshiNakamotoBitcoin@users.noreply.github.com> Date: Thu, 3 Oct 2024 23:28:36 +0200 Subject: [PATCH] Update PyBlockMiner.py --- pybitblock/SPV/PyBlockMiner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pybitblock/SPV/PyBlockMiner.py b/pybitblock/SPV/PyBlockMiner.py index cc7c9de8..c265ec0e 100644 --- a/pybitblock/SPV/PyBlockMiner.py +++ b/pybitblock/SPV/PyBlockMiner.py @@ -112,7 +112,7 @@ def BitcoinMiner(restart=False): merkle_root = ''.join([merkle_root[i] + merkle_root[i + 1] for i in range(0, len(merkle_root), 2)][::-1]) work_on = get_current_block_height() - print(Fore.GREEN, 'Working on current Network height', Fore.WHITE, work_on) + print(Fore.GREEN, '\n\n Working on current Network height', Fore.WHITE, work_on) print(Fore.YELLOW, 'Current TARGET =', Fore.RED, target) z = 0 while True: