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
Currently a server.version method call to electrum server is used as a keep alive:
server.version
connectrum/connectrum/client.py
Line 167 in 99948f9
According to the electrum protocol server.version is allowed to be called only once:
Identify the client to the server and negotiate the protocol version. Only the first server.version() message is accepted.
https://electrumx.readthedocs.io/en/latest/protocol-methods.html#server-version
Keep alive can be achieved with server.ping method: https://electrumx.readthedocs.io/en/latest/protocol-methods.html#server-ping
server.ping
The text was updated successfully, but these errors were encountered:
server.version already sent
This is fixed since 0.8.1.
Sorry, something went wrong.
yup, good point. closing issue
No branches or pull requests
Currently a
server.version
method call to electrum server is used as a keep alive:connectrum/connectrum/client.py
Line 167 in 99948f9
According to the electrum protocol
server.version
is allowed to be called only once:https://electrumx.readthedocs.io/en/latest/protocol-methods.html#server-version
Keep alive can be achieved with
server.ping
method:https://electrumx.readthedocs.io/en/latest/protocol-methods.html#server-ping
The text was updated successfully, but these errors were encountered: