Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # this script goes in the same directory as login.py&process-claims.py
- import time
- import os
- import sys
- # Import the wallet list
- Wallets = [line.rstrip('\n') for line in open(sys.argv[1])]
- x = 0
- # Scan through the list of wallets so that Login.py will be able to auto-register wallets
- while x < 1:
- for y in range(len(Wallets) -1):
- os.system('python login.py ' + Wallets[y] + ' ' + sys.argv[2] + ' ')
- # Wait 6 minutes
- time.sleep(60 * 6)
- # Reload the Wallets file just incease we've added or modified it within the last 6 minutes
- Wallets = [line.rstrip('\n') for line in open(sys.argv[1])]
- print ''
- print 'Recycling...'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement