Skip to content

Commit

Permalink
Merge pull request #1 from jaonoctus/fix/bech32-private-key
Browse files Browse the repository at this point in the history
fix: get bech32 private key
  • Loading branch information
jaonoctus authored Jan 18, 2023
2 parents 216a3c2 + 5dd7d78 commit 5e1b440
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const privateKeyInput = computed(() => {
if (isHexFormat.value) {
return privateKeyHex.value
}
const { bech32PrivateKey } = getBech32PrivateKey({ privateKey: publicKeyHex.value })
const { bech32PrivateKey } = getBech32PrivateKey({ privateKey: privateKeyHex.value })
return bech32PrivateKey
})
Expand Down
2 changes: 2 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"private": true,
"version": "1.0.0",
"version": "1.0.1",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
Expand Down

1 comment on commit 5e1b440

@vercel
Copy link

@vercel vercel bot commented on 5e1b440 Jan 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.