Skip to content

Commit

Permalink
fix: store peerdid keys also as raw
Browse files Browse the repository at this point in the history
  • Loading branch information
elribonazo committed Nov 17, 2023
1 parent 2b46095 commit 631c445
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ export class Database implements Domain.Pluto {
{
type: "string",
name: "raw",
value: Buffer.from(prv.getEncoded()).toString("hex"),
value: Buffer.from(prv.raw).toString("hex"),
},
] as KeySpec[]
),
Expand Down

0 comments on commit 631c445

Please sign in to comment.