From df899d9434cac2361c87e4feb4245529c579d2a3 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Fri, 29 Aug 2025 15:48:34 -0700 Subject: [PATCH] Update wallet backup method doc. --- src/lib/wallet/index.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/lib/wallet/index.ts b/src/lib/wallet/index.ts index 96bc703..684b616 100644 --- a/src/lib/wallet/index.ts +++ b/src/lib/wallet/index.ts @@ -31,9 +31,10 @@ export class Wallet { static get DB_NAME (): 'Wallet' { return 'Wallet' } /** - * Retrieves all encrypted wallets from the database. + * Retrieves all wallets with encrypted secrets and unencrypted metadata from + * the database. * - * @returns Array of wallets with encrypted secrets and unencrypted metadata + * @returns id, type, iv, salt, encrypted */ static async backup (): Promise { return _backup() -- 2.47.3