From f836553c2e40cb7e875370b77c0e83a7a4cf073c Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Tue, 3 Dec 2024 16:32:28 -0800 Subject: [PATCH] Log total accounts generated. --- test.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test.html b/test.html index fe7737b..92bc8b0 100644 --- a/test.html +++ b/test.html @@ -9,7 +9,7 @@ console.log(bipWallet.mnemonic) let now = performance.now() const bipAccounts = await bipWallet.accounts(0, 0x2000) - console.log(`bip44 done: ${performance.now() - now} ms`) + console.log(`${bipAccounts.length} bip44 accounts done: ${performance.now() - now} ms`) const bipAccount = bipAccounts[0] console.log(bipAccount.privateKey) console.log(bipAccount.publicKey) @@ -21,7 +21,7 @@ console.log(blakeWallet.mnemonic) now = performance.now() const blakeAccounts = await blakeWallet.accounts(0, 0x2000) - console.log(`blake2b done: ${performance.now() - now} ms`) + console.log(`${blakeAccounts.length} blake2b accounts done: ${performance.now() - now} ms`) const blakeAccount = blakeAccounts[0] console.log(blakeAccount.privateKey) console.log(blakeAccount.publicKey) -- 2.34.1