Skip to content

Commit

Permalink
Update config.py
Browse files Browse the repository at this point in the history
  • Loading branch information
zaivanza authored May 25, 2023
1 parent 5215c86 commit ae12518
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions config.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,10 +205,12 @@ def sleeping(from_sleep, to_sleep):
RUN_COLOR = random.choice(colors)

def get_wallet_proxies():
result = {}
for i in range(len(WALLETS)):
result[WALLETS[i]] = PROXIES[i % len(PROXIES)]
return result
try:
result = {}
for i in range(len(WALLETS)):
result[WALLETS[i]] = PROXIES[i % len(PROXIES)]
return result
except: None

def get_prices():

Expand Down

0 comments on commit ae12518

Please sign in to comment.