Skip to content

Commit

Permalink
Update pvkmassconvert_compressed.py
Browse files Browse the repository at this point in the history
Signed-off-by: Fahd El Haraka <[email protected]>
  • Loading branch information
ELHARAKA authored Oct 29, 2023
1 parent eba8569 commit de25206
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions pvkmassconvert_compressed.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import binascii
import hashlib
import base58
from common import process_file

def convert(hex_private_key):
"""
Expand All @@ -20,10 +21,8 @@ def convert(hex_private_key):
print(wif)
file.write(f"{wif} \n")

with open("brute-pvks.txt", encoding='utf-8') as file_handle:
for line in file_handle:
print(str.strip(line))
convert(str.strip(line))
# Use the common function to process the file
process_file("brute-pvks.txt", convert)

print("__________________________________________________\n")
print("Developed by: Fahd El Haraka")
Expand Down

0 comments on commit de25206

Please sign in to comment.