Skip to content

Commit

Permalink
feat(send-interface): uncommented key genrating logic
Browse files Browse the repository at this point in the history
  • Loading branch information
anshuman008 committed Oct 8, 2024
1 parent 3e90569 commit d453f51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/walletService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export async function createWallet(user: User) {
const keypair = Keypair.generate()
const publicKey = keypair.publicKey.toString()
const privateKey = base58.encode(keypair.secretKey)
// await pvtKeyEncryptionManager(privateKey)
await pvtKeyEncryptionManager(privateKey)
await prisma.user.update({
where: {
id: user.id,
Expand Down

0 comments on commit d453f51

Please sign in to comment.