remove double 0x prefix

Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
This commit is contained in:
Uncle Fatso 2025-12-01 16:47:57 +03:00
parent e024c32a43
commit 99621f0046
Signed by: f4ts0
GPG Key ID: 565F4F2860226EBB
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "ghost-wallet",
"version": "0.1.5",
"version": "0.1.6",
"description": "Browser extension to manage ghost blockchain light clients.",
"main": "dist/src/index.js",
"author": "Uncle f4ts0 <f4ts0@ghostchain.io>",

View File

@ -237,7 +237,7 @@ export const createKeyring = () => {
).at(cryptoKeyIndex)
assert(secret, "secret key should exists")
// TODO: need to get secret from secret and derivation path
return `0x${secret}`
return secret
}
let currentPassword: string | undefined