vlnahp / Btcbf

Bitcoin private key brute force tool, written in python. Also can be used as a bitcoin wallet generator.
GNU Affero General Public License v3.0
339 stars 137 forks source link

Where are the results saved? #33

Closed justemerald closed 2 years ago

justemerald commented 2 years ago

Where are the results saved? Does the program automatically create a folder?

vlnahp commented 2 years ago

It is saved to a text file.

f = open("foundkey.txt", "a") # the found privatekey and address saved to "foundkey.txt"
                f.write(key.address+"\n")
                f.write(key.to_wif()+"\n")
                f.close()
justemerald commented 2 years ago

Yeah, but does the program automatically create a folder, or should I?

vlnahp commented 2 years ago

No folder is needed. The text file is saved to the same directory as the Btcbf.py.

justemerald commented 2 years ago

Okay, thank you)