Skip to content

Commit a25a5c7

Browse files
committed
0.6.9
1 parent 95524c0 commit a25a5c7

3 files changed

Lines changed: 7 additions & 4 deletions

File tree

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nostr-nsec-seedphrase",
3-
"version": "0.6.8",
3+
"version": "0.6.9",
44
"description": "A comprehensive TypeScript library for Nostr key management with BIP39 seed phrases, supporting both ESM and CommonJS. Implements NIP-01, NIP-06, NIP-19, and NIP-26 with key generation, event signing, bech32 encoding/decoding, and secure cryptographic operations.",
55
"type": "module",
66
"main": "./dist/index.js",

src/nips/nip-49.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@ export function toNcryptsec(
3131
secretBytes.fill(0); // zero sensitive material
3232
return result;
3333
} catch (error) {
34-
logger.error("Failed to encrypt private key to ncryptsec:", error?.toString());
34+
logger.error(
35+
"Failed to encrypt private key to ncryptsec:",
36+
error?.toString(),
37+
);
3538
throw error;
3639
}
3740
}

0 commit comments

Comments
 (0)