Skip to content

Commit

Permalink
cleaned code
Browse files Browse the repository at this point in the history
  • Loading branch information
Isaacdelly authored Dec 7, 2017
1 parent 405557a commit 8357416
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions plutus.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ def balance(address):
def main():
data = [0,0,0,0]
while True:
data[0] = privateKey() # data[0] = private key
data[1] = publicKey(data[0]) # data[1] = public key
data[2] = address(data[1]) # data[2] = wallet address
data[3] = balance(data[2]) # data[3] = balance in Satoshi
data[0] = privateKey()
data[1] = publicKey(data[0])
data[2] = address(data[1])
data[3] = balance(data[2])
if (data[3] == 0):
print("{:<34}".format(str(data[2])) + " = " + str(data[3]))
if (data[3] != 0 and data[3] > 0):
Expand Down

0 comments on commit 8357416

Please sign in to comment.