]> git.codecow.com Git - libnemo.git/commitdiff
Unnecessary parentheses.
authorChris Duncan <chris@zoso.dev>
Wed, 30 Jul 2025 13:53:34 +0000 (06:53 -0700)
committerChris Duncan <chris@zoso.dev>
Wed, 30 Jul 2025 13:53:34 +0000 (06:53 -0700)
src/lib/wallets/blake2b-wallet.ts

index 87b906c6d74f48824767ecb032a826ec30cad008..f576d10006152a12b517dcb248720a53b29bc861 100644 (file)
@@ -103,7 +103,7 @@ export class Blake2bWallet extends Wallet {
                try {\r
                        const id = await Entropy.create()\r
                        const m = await Bip39Mnemonic.fromPhrase(mnemonic)\r
-                       const s = (await m.toBlake2bSeed())\r
+                       const s = await m.toBlake2bSeed()\r
                        Blake2bWallet.#isInternal = true\r
                        wallet = new this(id, s, m)\r
                } catch (err) {\r