You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expected behavior
The incrementProxyNumber() function is supposed to assign a new proxy for each of the tokens. Instead, it assigns the proxy_number value to 1 and doesn't increment it afterward.
Bud Description
The script
start.py
doesn't increment proxies for any of the bots that use proxies.To Reproduce
Steps to reproduce the behavior:
start.py
and choose any of the bots that use proxies.print(proxy_number)
at the end of theincrementProxyNumber()
function to see the incremented value:Expected behavior
The
incrementProxyNumber()
function is supposed to assign a new proxy for each of the tokens. Instead, it assigns theproxy_number
value to 1 and doesn't increment it afterward.Solution
The issue is in the code below:
proxy_number
gets assigned to 1 instead of incrementing the value. The increment operator=+
is misspelled and should be instead+=
.Fixing it gives the following output:
The text was updated successfully, but these errors were encountered: