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
There seem to be several specifics to the signing protocol. Some of them may be variable and need conformance.
Determine what needs conformance in the signing protocol. Document details in the protocol docs.
The text was updated successfully, but these errors were encountered:
For signing, a packet is first encoded by protobuf to the undelimited wire format. The result is a sequence of bytes, in Python stored in a str value.
str
That string is passed to the electroncash.bitcoin.EC_KEY method sign_message: https://github.com/fyookball/electrum/blob/2bda04f08f293beee5fcd68d8a8c185afeb77fa1/lib/bitcoin.py#L615
electroncash.bitcoin.EC_KEY
sign_message
The compressed argument is False if a vk_from value starts with '04' (indicating a compressed key?), True otherwise.
compressed
False
vk_from
'04'
True
Sorry, something went wrong.
No branches or pull requests
There seem to be several specifics to the signing protocol. Some of them may be variable and need conformance.
Determine what needs conformance in the signing protocol. Document details in the protocol docs.
The text was updated successfully, but these errors were encountered: