Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/sign.js
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ const parseKey = function(rawkey, coin, path) {
}
// if it doesn't have commas, we expect it is an xprv or xlmsecret properly formatted
if(path) {
let node = utxoLib.HDNode.fromPrivateKeyBuffer(Buffer.from(rawkey, 'hex'));
let node = utxoLib.HDNode.fromBase58(rawkey);
node = node.derivePath(path);
return node.toBase58();
}
Expand Down