From 0fa691f13a05d0e40aad172e86de79529ea690e2 Mon Sep 17 00:00:00 2001 From: Satoshi Nakamoto <65907137+SatoshiNakamotoBitcoin@users.noreply.github.com> Date: Fri, 4 Oct 2024 00:01:08 +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 c265ec0..7df0b8b 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, '\n\n Working on current Network height', Fore.WHITE, work_on) + print(Fore.GREEN, '\n Working on current Network height', Fore.WHITE, work_on) print(Fore.YELLOW, 'Current TARGET =', Fore.RED, target) z = 0 while True: