Skip to content

Commit

Permalink
Update PyVanityGen.py
Browse files Browse the repository at this point in the history
  • Loading branch information
curly60e authored Oct 21, 2024
1 parent 2645f38 commit 11d8962
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pybitblock/SPV/PyVanityGen.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand All @@ -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:
Expand Down

0 comments on commit 11d8962

Please sign in to comment.