mirror of
https://github.com/curly60e/pyblock.git
synced 2026-08-16 13:00:52 +02:00
Update PyVanityGen.py
This commit is contained in:
parent
2645f3818c
commit
11d8962016
1 changed files with 2 additions and 2 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue