From: Chris Duncan Date: Wed, 5 Aug 2026 08:50:01 +0000 (-0700) Subject: Typo. X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=46f0aa8f638e36c3a6cc450b9bcd15c136e0499e;p=libnemo.git Typo. --- diff --git a/src/lib/crypto/wallet-aes-gcm.ts b/src/lib/crypto/wallet-aes-gcm.ts index 1e951c8..27ad449 100644 --- a/src/lib/crypto/wallet-aes-gcm.ts +++ b/src/lib/crypto/wallet-aes-gcm.ts @@ -46,7 +46,6 @@ export class WalletAesGcm { .encrypt({ name: 'AES-GCM', iv, additionalData }, key, encoded) .then(encrypted => { encoded.fill(0) - key return { iv, encrypted } }) }