We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
So I tried implementing the websockets code from here
But I get some strange error messages.
First this code
bcsm = await BinanceChainSocketManager.create(loop, handle_evt, address2, env=testnet_env)
Does not work because address2 does not exists. I get a NameError: name 'address2' is not defined error
When I remove the 2 in address2 I get the next error.
TypeError: create() got multiple values for argument 'env'
I'm not really sure how to solve this issue.
Did anyone get the websockets to work?
The text was updated successfully, but these errors were encountered:
I guess the address2is just a type. remove the 2 and i guess it will work.
address2
2
Sorry, something went wrong.
No branches or pull requests
So I tried implementing the websockets code from here
But I get some strange error messages.
First this code
bcsm = await BinanceChainSocketManager.create(loop, handle_evt, address2, env=testnet_env)
Does not work because address2 does not exists.
I get a NameError: name 'address2' is not defined error
When I remove the 2 in address2 I get the next error.
TypeError: create() got multiple values for argument 'env'
I'm not really sure how to solve this issue.
Did anyone get the websockets to work?
The text was updated successfully, but these errors were encountered: