Xefrok/BitBruteForce-Wallet

Identation error

kusayuzayushko opened this issue · 3 comments

$ python3 seekanddestroy.py             
  File "seekanddestroy.py", line 63
    if pub in line:
    ^
IndentationError: expected an indented block

I have the same problem

First of all, add two TABS before every line from 63 to 83 in file seekanddestroy.py (That is causing this IndentationError)

if pub in line:
msg = "\nPublic: " + str(pub) + " ---- Private: " + str(priv) + "YEI"
text = msg
#UNCOMMENT IF 2FA from gmail is activated, or risk missing your winning ticket;)
#server = smtplib.SMTP("smtp.gmail.com", 587)
#server.ehlo()
#server.starttls()
#server.login("example@gmail.com", "password")
#fromaddr = "example@gmail.com"
#toaddr = "example@gmail.com"
#server.sendmail(fromaddr, toaddr, text)
print(text)
with open('Wallets.txt','a') as f:
f.write(priv)
f.write(' ')
f.write(pub)
f.write('\n')
f.close()
time.sleep(30)
print ('WINNER WINNER CHICKEN DINNER!!! ---- ' +dt.datetime.now().strftime('%Y-%m-%d %H:%M:%S'), pub, priv)
break

Second thing: dependencies fix - If you do not have pandas module already installed (that is not included in requirements.txt file) then install it using pip: python3 -m pip install pandas

And if you are a Windows user and have numpy module version 1.19.4 (or later) installed and the program is still not working (showing errors like ** On entry to DGEBAL parameter number 3 had an illegal value) try to downgrade the numpy module: python3 -m pip uninstall numpy and then: python3 -m pip install numpy==1.19.3 (It's already reported that numpy version 1.19.4 is causing problems on Windows)

(Also if you are a Windows user it is possible that python3 command will be named just python. If you have Python installed and cannot run it from the console try adding its executables path to the environment variables path)

@LyingCarpet Solved the issues, Thank you Man!