Skip to content

Commit

Permalink
Update PyVanityGen.py
Browse files Browse the repository at this point in the history
  • Loading branch information
SatoshiNakamotoBitcoin authored Oct 22, 2024
1 parent 5806ea6 commit 5a1aa65
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 @@ -47,7 +47,7 @@ def address_search(search_for, witness_type, progress_queue, console):
k = HDKey(key=privkey.to_bytes(32, 'big'), witness_type=witness_type)
address = k.address()
count += 1
progress_queue.put(f"Searched {count} addresses (pid {os.getpid()})")
progress_queue.put(f"Searched {count} Vanity addresses (pid {os.getpid()})")
if search_for in address:
wif_key = privkey_to_wif(privkey)
result_message = f"Found Address: {address}\nPrivate Key WIF: {wif_key}"
Expand All @@ -64,7 +64,7 @@ def main():
console.clear()

# Seleccionar tipo de direcciΓ³n
witness_type = console.input("Type your address format (legacy/segwit/p2sh-segwit): ").strip()
witness_type = console.input("Type the address format you want to get (legacy/segwit/p2sh-segwit): ").strip()

# Seleccionar texto deseado en la direcciΓ³n
search_for = console.input("Put your Word/Target for your Vanity addresses: ").strip()
Expand Down

0 comments on commit 5a1aa65

Please sign in to comment.