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
HI there. This is not an issue report but I have a question around verifying if a transaction was signed by a certain person using steem.js code and I'm having trouble finding someone who can help. Assuming I have an blockchain transaction, signed with a private posting key. I had success getting the signature using this code:
So far so good. But now I want to figure out if the transaction was signed by the private posting key belonging to the public posting key. I try the following code:
Since the transaction was signed with the user's private posting key, I would expect the signature to verify that. However, the result is always false. What am I overlooking?
The text was updated successfully, but these errors were encountered:
HI there. This is not an issue report but I have a question around verifying if a transaction was signed by a certain person using
steem.js
code and I'm having trouble finding someone who can help. Assuming I have an blockchain transaction, signed with a private posting key. I had success getting the signature using this code:Now I pull the public key from the
get_accounts
operation and can construct an object like so:So far so good. But now I want to figure out if the transaction was signed by the private posting key belonging to the public posting key. I try the following code:
Since the transaction was signed with the user's private posting key, I would expect the signature to verify that. However, the result is always
false
. What am I overlooking?The text was updated successfully, but these errors were encountered: