Skip to content

Commit

Permalink
Update PkMaker.py
Browse files Browse the repository at this point in the history
From Issue Frankenmint#16
  • Loading branch information
Isitsmd authored Oct 28, 2021
1 parent a6e1e4c commit 7bd7a77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PkMaker.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
level=logging.INFO, format='%(message)s', datefmt='%Y-%m-%d,%H:%M:%S')
logging.getLogger("requests").setLevel(logging.WARNING)
logging.getLogger("blockcypher").setLevel(logging.WARNING)
logging.info ('"Timestamp", "WifKey", "PublicAddress"')
logging.info ('"Date" "Time" "WifKey" "PublicAddress" "Balance"')



Expand Down Expand Up @@ -48,7 +48,7 @@ def ping_address(publicAddress):
raise ValueError("cannot reach block explorer for balance", resp)
# "WifKey", "HexKey", "PublicAddress", "PublicKey", "Balance"
#Comment out this line if you wish to NOT record blank keys
logging.info (''+ time.strftime("%m-%d-%y %H:%M:%S") +','+ wif.decode('utf-8') +','+ publicAddress)
logging.info (time.strftime("%d-%m-%y %H:%M ") + wif.decode('utf-8') +" "+ publicAddress +" "+ str(balance))

if float(balance) > 0.00000000:
logging.info (''+ time.strftime("%m-%d-%y %H:%M:%S") +','+ wif.decode('utf-8') +','+publicAddress+' ,balance '+str(balance))
Expand Down

0 comments on commit 7bd7a77

Please sign in to comment.