Skip to content

Commit

Permalink
bugfix: hash signature was not encoded correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
Takadenoshi committed Oct 19, 2023
1 parent 1ce5000 commit fffde0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/transfer-ledger-create.html
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@
var txnHash = document.getElementById("blind-signing-hash").value
try {
var signed = await window.ledger.signHash(getPath(),txnHash);
var sig = signed.signature;
var sig = bufferToHex(signed.signature);
document.getElementById("signature-blind-sig").value = sig;
document.getElementById("signature-blind-sig-field").hidden = false;
} catch (e) {
Expand Down

0 comments on commit fffde0e

Please sign in to comment.