From 11d89620161d76341965f6bf4e997b5e4dc1650f Mon Sep 17 00:00:00 2001 From: curly60e <55191248+curly60e@users.noreply.github.com> Date: Mon, 21 Oct 2024 11:52:15 -0300 Subject: [PATCH] Update PyVanityGen.py --- pybitblock/SPV/PyVanityGen.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pybitblock/SPV/PyVanityGen.py b/pybitblock/SPV/PyVanityGen.py index 94a78da..270bab4 100644 --- a/pybitblock/SPV/PyVanityGen.py +++ b/pybitblock/SPV/PyVanityGen.py @@ -84,7 +84,7 @@ def main(): layout["progress"].update(progress_panel) layout["results"].update(result_panel) - with Live(layout, console=console, refresh_per_second=4) as live: + with Live(layout, console=console, refresh_per_second=10) as live: progress_queue = multiprocessing.Queue() ps = [] for i in range(processors): @@ -99,7 +99,7 @@ def main(): result_messages = [] while True: try: - message = progress_queue.get(timeout=1) + message = progress_queue.get(timeout=0.1) if "Found Address" in message: result_messages.append(message) if len(result_messages) > 10: