Skip to content

Commit

Permalink
unsupporated type fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yaqub0r committed Dec 19, 2021
1 parent 46a3d57 commit 93f2834
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LimitSwap.py
Original file line number Diff line number Diff line change
Expand Up @@ -1740,7 +1740,7 @@ def buy(token_dict, inToken, outToken):



if token_dict['_FAILED_TRANSACTIONS'] >= token_dict['MAX_FAILED_TRANSACTIONS_IN_A_ROW']:
if token_dict['_FAILED_TRANSACTIONS'] >= int(token_dict['MAX_FAILED_TRANSACTIONS_IN_A_ROW']):
printt_err("---------------------------------------------------------------")
printt_err("DISABLING", token_dict['SYMBOL'])
printt_err("This token has reached maximum FAILED SIMULTANIOUS TRANSACTIONS")
Expand Down

0 comments on commit 93f2834

Please sign in to comment.