mirror of
https://github.com/Isaacdelly/Plutus.git
synced 2025-08-04 18:12:43 +02:00
Add files via upload
This commit is contained in:
@@ -67,11 +67,11 @@ def main(database, args):
|
||||
|
||||
if args['verbose']:
|
||||
print(address)
|
||||
|
||||
|
||||
if address[-args['substring']:] in database:
|
||||
for filename in os.listdir(DATABASE):
|
||||
with open(DATABASE + filename) as file:
|
||||
if address in file:
|
||||
if address in file.read():
|
||||
with open('plutus.txt', 'a') as file:
|
||||
file.write('hex private key: ' + str(private_key) + '\n' +
|
||||
'WIF private key: ' + str(private_key_to_wif(private_key)) + '\n'
|
||||
|
Reference in New Issue
Block a user