Skip to content

Commit

Permalink
Update MAIN.py
Browse files Browse the repository at this point in the history
  • Loading branch information
zaivanza authored May 14, 2023
1 parent d5420b0 commit c480319
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions MAIN.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ def start_module(module, key=''):
woofi(key)



if __name__ == "__main__":

cprint(RUN_TEXT, RUN_COLOR)
Expand All @@ -49,17 +48,22 @@ def start_module(module, key=''):
for key in WALLETS:
zero += 1

wallet = evm_wallet(key)
list_send.append(f'{zero}/{len(WALLETS)} : {wallet}\n')
cprint(f'\n{zero}/{len(WALLETS)} : {wallet}\n', 'white')
try:

wallet = evm_wallet(key)
list_send.append(f'{zero}/{len(WALLETS)} : {wallet}\n')
cprint(f'\n{zero}/{len(WALLETS)} : {wallet}\n', 'white')

start_module(MODULE, key)

start_module(MODULE, key)
if TG_BOT_SEND == True:
send_msg() # отправляем результат в телеграм
list_send.clear()

if TG_BOT_SEND == True:
send_msg() # отправляем результат в телеграм
list_send.clear()
if IS_SLEEP == True:
sleeping(SLEEP_FROM, SLEEP_TO)

if IS_SLEEP == True:
sleeping(SLEEP_FROM, SLEEP_TO)
except Exception as error:
logger.error()


0 comments on commit c480319

Please sign in to comment.