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
I am trying to calculate tx hash as following:
bytes = utils.SerializeTransaction(&transferTx) hash := sha3.Sum256(bytes)
But the hash doesn't match what I found on https://explorer.nemtool.com/
Can you help on this?
Thank you for the sdk and your help.
Juping
The text was updated successfully, but these errors were encountered:
I also tried to add signature to byte array, but the result still doesn't match with online explorer:
bytes = utils.SerializeTransaction(&transferTx) signature, _ := hex.DecodeString(transferTx.Signature) bytes = append(bytes, signature...) hash := sha3.Sum256(bytes)
Sorry, something went wrong.
No branches or pull requests
I am trying to calculate tx hash as following:
bytes = utils.SerializeTransaction(&transferTx)
hash := sha3.Sum256(bytes)
But the hash doesn't match what I found on https://explorer.nemtool.com/
Can you help on this?
Thank you for the sdk and your help.
Juping
The text was updated successfully, but these errors were encountered: